Skip to main content

ValueModel

用于表示 StringNumberBooleanNull 四种基本类型数据。

满足条件表示的类型获取对应值
isNull() == trueNullasOri()
isNumber() == trueNumberasNumber()
isBoolean() == trueBooleanasBoolean()
isString() == trueStringasString()

对于 Number 类型数据还可以进一步使用下列方法,来获取更加精确的类型值。

满足条件表示的类型获取对应值
isNull() == trueNullasOri()
isByte() == truebyteasByte()
isShort() == trueshortasShort()
isInt() == trueintasInt()
isLong() == truelongasLong()
isBigInteger() == trueBigIntegerasBigInteger()
isFloat() == truefloatasFloat()
isDouble() == truedoubleasDouble()
isBigDecimal() == trueBigDecimalasBigDecimal()