Class 
Use 
SUMMARY: NESTED | FIELD | CONSTR | METHOD      DETAIL: FIELD | CONSTR | METHOD
FlexDoc/Javadoc 2.0
Demo Java Doc

java.base / java.lang
Class Number
java.lang.Object
  java.lang.Number
All Implemented Interfaces:
Serializable
Direct Known Subclasses:
Byte, Double, Float, Integer, Long, Short

public abstract class Number
extends Object
implements Serializable
The abstract class Number is the superclass of platform classes representing numeric values that are convertible to the primitive types byte, double, float, int, long, and short. The specific semantics of the conversion from the numeric value of a particular Number implementation to a given primitive type is defined by the Number implementation in question. For platform classes, the conversion is often analogous to a narrowing primitive conversion or a widening primitive conversion as defined in The Java Language Specification for converting between primitive types. Therefore, conversions may lose information about the overall magnitude of a numeric value, may lose precision, and may even return a result of a different sign than the input. See the documentation of a given Number implementation for conversion details.
Since:
1.0
Author:
Lee Boynton, Arthur van Hoff
See Also:
Serialized Form

Constructor Summary
Constructor for subclasses to call.
Method Summary
byte
Returns the value of the specified number as a byte.
abstract double
Returns the value of the specified number as a double.
abstract float
Returns the value of the specified number as a float.
abstract int
Returns the value of the specified number as an int.
abstract long
Returns the value of the specified number as a long.
short
Returns the value of the specified number as a short.
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Constructor Detail
Number
public Number
()
Constructor for subclasses to call.
Method Detail
intValue
public abstract int intValue
()
Returns the value of the specified number as an int.
Returns:
the numeric value represented by this object after conversion to type int.

longValue
public abstract long longValue
()
Returns the value of the specified number as a long.
Returns:
the numeric value represented by this object after conversion to type long.

floatValue
public abstract float floatValue
()
Returns the value of the specified number as a float.
Returns:
the numeric value represented by this object after conversion to type float.

doubleValue
public abstract double doubleValue
()
Returns the value of the specified number as a double.
Returns:
the numeric value represented by this object after conversion to type double.

byteValue
public byte byteValue
()
Returns the value of the specified number as a byte.
Implementation Requirements:
The default implementation returns the result of intValue() cast to a byte.
Returns:
the numeric value represented by this object after conversion to type byte.
Since:
1.1

shortValue
public short shortValue
()
Returns the value of the specified number as a short.
Implementation Requirements:
The default implementation returns the result of intValue() cast to a short.
Returns:
the numeric value represented by this object after conversion to type short.
Since:
1.1

 Class 
Use 
SUMMARY: NESTED | FIELD | CONSTR | METHOD      DETAIL: FIELD | CONSTR | METHOD
FlexDoc/Javadoc 2.0
Demo Java Doc

Java API documentation generated with FlexDoc/Javadoc 2.0 using JavadocClassic 3.0 template set.
FlexDoc/Javadoc is a template-driven programming tool for rapid development of any Javadoc-based Java API documentation generators (i.e. doclets). If you need to customize your Javadoc without writing a full-blown doclet from scratch, FlexDoc/Javadoc may be the only tool able to help you! Find out more at www.flexdoc.xyz