Uses of Class
org.joou.UInteger
-
-
Uses of UInteger in org.joou
Fields in org.joou declared as UInteger Modifier and Type Field Description static UInteger
UInteger. MAX
A constant holding the maximum value anunsigned int
can have as UInteger, 232-1.static UInteger
UInteger. MIN
A constant holding the minimum value anunsigned int
can have as UInteger, 0.private static UInteger[]
UInteger. VALUES
Cached valuesFields in org.joou with type parameters of type UInteger Modifier and Type Field Description private static java.lang.Class<UInteger>
UInteger. CLASS
Methods in org.joou that return UInteger Modifier and Type Method Description UInteger
UInteger. add(int val)
UInteger
UInteger. add(UInteger val)
private static UInteger
UInteger. getCached(long value)
Retrieve a cached value.private static UInteger[]
UInteger. mkValues()
Generate a cached value for initial unsigned integer values.UInteger
UInteger. subtract(int val)
UInteger
UInteger. subtract(UInteger 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
Unsigned. uint(java.lang.String value)
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
UInteger. valueOf(java.lang.String value)
Create anunsigned int
private static UInteger
UInteger. valueOfUnchecked(long value)
Get the value of a long without checking the value.Methods in org.joou with parameters of type UInteger Modifier and Type Method Description UInteger
UInteger. add(UInteger val)
int
UInteger. compareTo(UInteger o)
UInteger
UInteger. subtract(UInteger val)
-