Uses of Class
org.joou.UInteger
-
Uses of UInteger in org.joou
Modifier and TypeFieldDescriptionstatic final UInteger
UInteger.MAX
A constant holding the maximum value anunsigned int
can have as UInteger, 232-1.static final UInteger
UInteger.MIN
A constant holding the minimum value anunsigned int
can have as UInteger, 0.private static final UInteger[]
UInteger.VALUES
Cached valuesModifier and TypeMethodDescriptionUInteger.add
(int val) private static UInteger
UInteger.getCached
(long value) Retrieve a cached value.private static final UInteger[]
UInteger.mkValues()
Generate a cached value for initial unsigned integer values.UInteger.subtract
(int val) static UInteger
Unsigned.uint
(int value) Create anunsigned int
by masking it with0xFFFFFFFF
i.e.static UInteger
Unsigned.uint
(long value) Create anunsigned int
static UInteger
Create anunsigned int
static UInteger
UInteger.valueOf
(int value) Create anunsigned int
by masking it with0xFFFFFFFF
i.e.static UInteger
UInteger.valueOf
(long value) Create anunsigned int
static UInteger
Create anunsigned int
private static UInteger
UInteger.valueOfUnchecked
(long value) Get the value of a long without checking the value.