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 UIntegerUInteger. MAXA constant holding the maximum value anunsigned intcan have as UInteger, 232-1.static UIntegerUInteger. MINA constant holding the minimum value anunsigned intcan have as UInteger, 0.private static UInteger[]UInteger. VALUESCached valuesFields in org.joou with type parameters of type UInteger Modifier and Type Field Description private static java.lang.Class<UInteger>UInteger. CLASSMethods in org.joou that return UInteger Modifier and Type Method Description UIntegerUInteger. add(int val)UIntegerUInteger. add(UInteger val)private static UIntegerUInteger. getCached(long value)Retrieve a cached value.private static UInteger[]UInteger. mkValues()Generate a cached value for initial unsigned integer values.UIntegerUInteger. subtract(int val)UIntegerUInteger. subtract(UInteger val)static UIntegerUnsigned. uint(int value)Create anunsigned intby masking it with0xFFFFFFFFi.e.static UIntegerUnsigned. uint(long value)Create anunsigned intstatic UIntegerUnsigned. uint(java.lang.String value)Create anunsigned intstatic UIntegerUInteger. valueOf(int value)Create anunsigned intby masking it with0xFFFFFFFFi.e.static UIntegerUInteger. valueOf(long value)Create anunsigned intstatic UIntegerUInteger. valueOf(java.lang.String value)Create anunsigned intprivate static UIntegerUInteger. 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 UIntegerUInteger. add(UInteger val)intUInteger. compareTo(UInteger o)UIntegerUInteger. subtract(UInteger val)
-