java.lang
Class Long

java.lang.Object
  |
  +--java.lang.Number
        |
        +--java.lang.Long

public class Long
extends Number


Field Summary
static long MAX_VALUE
           
static long MIN_VALUE
           
 
Method Summary
 byte byteValue()
           
 boolean equals(Object o)
           
 float floatValue()
           
 int hashCode()
           
 int intValue()
           
 long longValue()
           
static long parseLong(String s)
           
static long parseLong(String s, int radix)
           
 short shortValue()
           
 String toString()
           
static String toString(long l)
           
static String toString(long val, int radix)
           
 
Methods inherited from class java.lang.Object
getClass
 

Field Detail

MIN_VALUE

public static long MIN_VALUE

MAX_VALUE

public static long MAX_VALUE
Method Detail

parseLong

public static long parseLong(String s,
                             int radix)
                      throws NumberFormatException
NumberFormatException

toString

public static String toString(long val,
                              int radix)

byteValue

public byte byteValue()
Specified by:
byteValue in class Number

shortValue

public short shortValue()
Specified by:
shortValue in class Number

intValue

public int intValue()
Specified by:
intValue in class Number

longValue

public long longValue()
Specified by:
longValue in class Number

floatValue

public float floatValue()
Specified by:
floatValue in class Number

equals

public boolean equals(Object o)
Overrides:
equals in class Object

hashCode

public int hashCode()
Overrides:
hashCode in class Object

parseLong

public static long parseLong(String s)
                      throws NumberFormatException
NumberFormatException

toString

public String toString()
Overrides:
toString in class Object

toString

public static String toString(long l)