|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||
java.lang.Objectjava.lang.Long
public final class Long
The Long class provides several methods for converting a
long to a String and a
String to a long, as well as other
constants and methods useful when dealing with a long.
| Field Summary | |
|---|---|
static long |
MAX_VALUE
A constant holding the maximum value a long can
have, 263-1. |
static long |
MIN_VALUE
A constant holding the minimum value a long can
have, -263. |
| Constructor Summary | |
|---|---|
Long()
|
|
| Method Summary | |
|---|---|
static String |
toHexString(long l)
Returns a string representation of the long
argument as an unsigned integer in base 16. |
static String |
toString(long l)
Returns a String object representing the specified
long. |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, getClass, notifyAll, toString, wait |
| Field Detail |
|---|
public static final long MIN_VALUE
long can
have, -263.
public static final long MAX_VALUE
long can
have, 263-1.
| Constructor Detail |
|---|
public Long()
| Method Detail |
|---|
public static String toHexString(long l)
long
argument as an unsigned integer in base 16.
i - a long to be converted to a string.
long
value represented by the argument in hexadecimal
(base 16).public static String toString(long l)
String object representing the specified
long. The argument is converted to signed decimal
representation and returned as a string.
i - a long to be converted.
|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||