public final class Long extends Number implements Comparable<Long>
| Modifier and Type | Field and Description |
|---|---|
static long |
MAX_VALUE
The largest value of type long.
|
static long |
MIN_VALUE
The smallest value of type long.
|
static Class<Long> |
TYPE |
| Constructor and Description |
|---|
Long(long value)
Constructs a newly allocated Long object that represents the primitive long argument.
|
| Modifier and Type | Method and Description |
|---|---|
byte |
byteValue()
Returns the value of this Long as a byte value.
|
static int |
compare(long l1,
long l2) |
int |
compareTo(Long l)
Compares this object to the specified object to determine their relative
order.
|
double |
doubleValue()
Returns the value of this Long as a double.
|
boolean |
equals(Object obj)
Compares this object against the specified object.
|
float |
floatValue()
Returns the value of this Long as a float.
|
int |
hashCode()
Computes a hashcode for this Long.
|
int |
intValue()
Returns the value of this Long as an int value.
|
long |
longValue()
Returns the value of this Long as a long value.
|
static long |
parseLong(String s)
Parses the string argument as a signed decimal long.
|
static long |
parseLong(String s,
int radix)
Parses the string argument as a signed long in the radix specified by the second argument.
|
String |
toString()
Returns a String object representing this Long's value.
|
static String |
toString(long i)
Returns a new String object representing the specified integer.
|
static String |
toString(long i,
int radix)
Creates a string representation of the first argument in the radix specified by the second argument.
|
static Long |
valueOf(long i)
Returns the object instance of i
|
shortValuepublic static final long MAX_VALUE
public static final long MIN_VALUE
public Long(long value)
public double doubleValue()
doubleValue in class Numberpublic boolean equals(Object obj)
public float floatValue()
floatValue in class Numberpublic int hashCode()
public long longValue()
public int intValue()
public byte byteValue()
public static long parseLong(String s) throws NumberFormatException
NumberFormatExceptionpublic static long parseLong(String s, int radix) throws NumberFormatException
NumberFormatExceptionpublic String toString()
public static String toString(long i)
public static String toString(long i, int radix)
public static Long valueOf(long i)
i - the primitivepublic static int compare(long l1,
long l2)
public int compareTo(Long l)
ComparablecompareTo in interface Comparable<Long>l - the object to compare to this instance.another;
a positive integer if this instance is greater than
another; 0 if this instance has the same order as
another.