Number
.
Modifier and type | Action and description |
---|---|
static com.google.common.util.concurrent.AtomicDouble | toAtomicDouble(Number) Convert the given value to AtomicInteger . |
static java.util.concurrent.atomic.AtomicInteger | toAtomicInteger(Number) Convert the given value to AtomicInteger . |
static java.util.concurrent.atomic.AtomicLong | toAtomicLong(Number) Convert the given value to AtomicLong . |
static java.math.BigDecimal | toBigDecimal(Number) Convert the given value to BigDecimal . |
static java.math.BigInteger | toBigInteger(Number) Convert the given value to BigInteger . |
static java.lang.Byte | toByte(Number) Convert the given value to Byte . |
static java.lang.Double | toDouble(Number) Convert the given value to Double . |
static java.lang.Float | toFloat(Number) Convert the given value to Float . |
static java.lang.Integer | toInteger(Number) Convert the given value to Integer . |
static java.lang.Long | toLong(Number) Convert the given value to Long . |
static java.lang.Short | toShort(Number) Convert the given value to Short . |
def toAtomicDouble(Number) : com.google.common.util.concurrent.AtomicDouble
AtomicInteger
. This function is not null-safe.
def toAtomicInteger(Number) : java.util.concurrent.atomic.AtomicInteger
AtomicInteger
. This function is not null-safe.
def toAtomicLong(Number) : java.util.concurrent.atomic.AtomicLong
AtomicLong
. This function is not null-safe.
def toBigDecimal(Number) : java.math.BigDecimal
BigDecimal
. This function is not null-safe.
def toBigInteger(Number) : java.math.BigInteger
BigInteger
. This function is not null-safe.
def toByte(Number) : java.lang.Byte
Byte
. This function is not null-safe.
def toDouble(Number) : java.lang.Double
Double
. This function is not null-safe.
def toFloat(Number) : java.lang.Float
Float
. This function is not null-safe.
def toInteger(Number) : java.lang.Integer
Integer
. This function is not null-safe.
def toLong(Number) : java.lang.Long
Long
. This function is not null-safe.
def toShort(Number) : java.lang.Short
Short
. This function is not null-safe.