Interface Numeric
- All Known Subinterfaces:
IntWrapper,LongWrapper
- All Known Implementing Classes:
IntWrapper.AtomicIntWrapper,IntWrapper.PrimitiveIntWrapper,LongWrapper.AtomicLongWrapper,LongWrapper.PrimitiveLongWrapper
public interface Numeric
Interface analog of
Number.-
Method Summary
Modifier and TypeMethodDescriptionbyteReturns the value asbyte.doubleReturns the value asdouble.floatReturns the value asfloat.intintValue()Returns the value asint.longReturns the value aslong.shortReturns the value asshort.
-
Method Details
-
byteValue
byte byteValue()Returns the value asbyte.- Returns:
- value as
byte
-
shortValue
short shortValue()Returns the value asshort.- Returns:
- value as
short
-
intValue
int intValue()Returns the value asint.- Returns:
- value as
int
-
longValue
long longValue()Returns the value aslong.- Returns:
- value as
long
-
floatValue
float floatValue()Returns the value asfloat.- Returns:
- value as
float
-
doubleValue
double doubleValue()Returns the value asdouble.- Returns:
- value as
double
-