Package org.joou

Class ULong

All Implemented Interfaces:
Serializable, Comparable<ULong>

public final class ULong extends UNumber implements Comparable<ULong>
The unsigned long type
See Also:
  • Field Details

    • serialVersionUID

      private static final long serialVersionUID
      Generated UID
      See Also:
    • MIN_VALUE

      public static final BigInteger MIN_VALUE
      A constant holding the minimum value an unsigned long can have, 0.
    • MAX_VALUE

      public static final BigInteger MAX_VALUE
      A constant holding the maximum value an unsigned long can have, 264-1.
    • MAX_VALUE_LONG

      public static final BigInteger MAX_VALUE_LONG
      A constant holding the maximum value + 1 an signed long can have, 263.
    • MIN

      public static final ULong MIN
      A constant holding the minimum value an unsigned long can have as ULong, 0.
    • MAX

      public static final ULong MAX
      A constant holding the maximum value + 1 an signed long can have as ULong, 263.
    • value

      private final long value
      The value modelling the content of this unsigned long
  • Constructor Details

  • Method Details