java.lang
Class Number

java.lang.Object
  |
  +--java.lang.Number
All Implemented Interfaces:
Serializable
Direct Known Subclasses:
Byte, Double, Long, Short

public abstract synchronized class Number
extends Object
implements Serializable

See Also:
Serialized Form

Constructor Summary
Number()
           
 
Method Summary
 byte byteValue()
           
abstract  double doubleValue()
           
abstract  float floatValue()
           
abstract  int intValue()
           
abstract  long longValue()
           
 short shortValue()
           
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait
 

Constructor Detail

Number

public Number()
Method Detail

intValue

public abstract int intValue()

longValue

public abstract long longValue()

floatValue

public abstract float floatValue()

doubleValue

public abstract double doubleValue()

byteValue

public byte byteValue()

shortValue

public short shortValue()