Class Number

java.lang.Object
java.lang.Number
Direct Known Subclasses:
AtomicInteger, AtomicLong, Byte, Double, Float, Integer, Long, Short

public abstract class Number extends java.lang.Object
  • Constructor Summary

    Constructors
    Constructor
    Description
     
  • Method Summary

    Modifier and Type
    Method
    Description
    byte
     
    abstract double
     
    abstract float
     
    abstract int
     
    abstract long
     
    short
     

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Constructor Details

    • Number

      public Number()
  • Method Details

    • intValue

      public abstract int intValue()
    • byteValue

      public byte byteValue()
    • longValue

      public abstract long longValue()
    • floatValue

      public abstract float floatValue()
    • doubleValue

      public abstract double doubleValue()
    • shortValue

      public short shortValue()