java.lang
Class Number

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

public abstract synchronized class Number
extends Object
implements java.io.Serializable


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, hashCode, toString
 

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()