Uses of Class
java.lang.Long
-
Packages that use Long Package Description java.lang -
-
Uses of Long in java.lang
Methods in java.lang that return Long Modifier and Type Method Description static Long
Long. decode(String string)
Parses the specified string and returns aLong
instance if the string can be decoded into a long value.static Long
Long. valueOf(long v)
Returns aLong
instance for the specified long value.static Long
Long. valueOf(String string)
Parses the specified string as a signed decimal long value.static Long
Long. valueOf(String string, int radix)
Parses the specified string as a signed long value using the specified radix.Methods in java.lang with parameters of type Long Modifier and Type Method Description int
Long. compareTo(Long object)
Compares this object to the specified long object to determine their relative order.
-