Number (Java SE 9 & JDK 9 ) (original) (raw)
- java.lang.Number
All Implemented Interfaces:
[Serializable](../../java/io/Serializable.html "interface in java.io")
Direct Known Subclasses:[AtomicInteger](../../java/util/concurrent/atomic/AtomicInteger.html "class in java.util.concurrent.atomic")
,[AtomicLong](../../java/util/concurrent/atomic/AtomicLong.html "class in java.util.concurrent.atomic")
,[BigDecimal](../../java/math/BigDecimal.html "class in java.math")
,[BigInteger](../../java/math/BigInteger.html "class in java.math")
,[Byte](../../java/lang/Byte.html "class in java.lang")
,[Double](../../java/lang/Double.html "class in java.lang")
,[DoubleAccumulator](../../java/util/concurrent/atomic/DoubleAccumulator.html "class in java.util.concurrent.atomic")
,[DoubleAdder](../../java/util/concurrent/atomic/DoubleAdder.html "class in java.util.concurrent.atomic")
,[Float](../../java/lang/Float.html "class in java.lang")
,[Integer](../../java/lang/Integer.html "class in java.lang")
,[Long](../../java/lang/Long.html "class in java.lang")
,[LongAccumulator](../../java/util/concurrent/atomic/LongAccumulator.html "class in java.util.concurrent.atomic")
,[LongAdder](../../java/util/concurrent/atomic/LongAdder.html "class in java.util.concurrent.atomic")
,[Short](../../java/lang/Short.html "class in java.lang")
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
See Also:
Serialized Form
See The Java™ Language Specification:
5.1.2 Widening Primitive Conversions, 5.1.3 Narrowing Primitive Conversions
Constructor Summary
Constructors
Constructor Description Number() Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods
Modifier and Type Method Description byte byteValue() Returns the value of the specified number as a byte. abstract double doubleValue() Returns the value of the specified number as a double. abstract float floatValue() Returns the value of the specified number as a float. abstract int intValue() Returns the value of the specified number as an int. abstract long longValue() Returns the value of the specified number as a long. short shortValue() Returns the value of the specified number as a short. * ### Methods inherited from class java.lang.[Object](../../java/lang/Object.html "class in java.lang") `[clone](../../java/lang/Object.html#clone--), [equals](../../java/lang/Object.html#equals-java.lang.Object-), [finalize](../../java/lang/Object.html#finalize--), [getClass](../../java/lang/Object.html#getClass--), [hashCode](../../java/lang/Object.html#hashCode--), [notify](../../java/lang/Object.html#notify--), [notifyAll](../../java/lang/Object.html#notifyAll--), [toString](../../java/lang/Object.html#toString--), [wait](../../java/lang/Object.html#wait--), [wait](../../java/lang/Object.html#wait-long-), [wait](../../java/lang/Object.html#wait-long-int-)`
Constructor Detail
* #### Number public Number()
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`. This implementation returns the result of [intValue()](../../java/lang/Number.html#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`. This implementation returns the result of [intValue()](../../java/lang/Number.html#intValue--) cast to a `short`. Returns: the numeric value represented by this object after conversion to type `short`. Since: 1.1
Report a bug or suggest an enhancement
For further API reference and developer documentation see the Java SE Documentation, which contains more detailed, developer-targeted descriptions with conceptual overviews, definitions of terms, workarounds, and working code examples.
Java is a trademark or registered trademark of Oracle and/or its affiliates in the US and other countries.
Copyright © 1993, 2017, Oracle and/or its affiliates, 500 Oracle Parkway, Redwood Shores, CA 94065 USA.
All rights reserved. Use is subject to license terms and the documentation redistribution policy.