-
Fields in java.lang with type parameters of type Long
| Modifier and Type |
Field |
Description |
static Class<Long> |
Long.TYPE |
The Class object that represents the primitive type long.
|
Methods in java.lang that return Long
| Modifier and Type |
Method |
Description |
static Long |
Long.decode(String string) |
Parses the specified string and returns a Long instance if the
string can be decoded into a long value.
|
static Long |
Long.getLong(String string) |
Returns the Long value of the system property identified by
string.
|
static Long |
Long.getLong(String string,
long defaultValue) |
Returns the Long value of the system property identified by
string.
|
static Long |
Long.getLong(String string,
Long defaultValue) |
Returns the Long value of the system property identified by
string.
|
static Long |
Long.valueOf(long v) |
Returns a Long 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.
|
static Long |
Long.getLong(String string,
Long defaultValue) |
Returns the Long value of the system property identified by
string.
|
-