Package org.apache.groovy.json.internal
Interface Value
- All Known Implementing Classes:
CharSequenceValue,NumberValue,ValueContainer
public interface Value
-
Method Summary
Modifier and Type Method Description BigDecimalbigDecimalValue()BigIntegerbigIntegerValue()booleanbooleanValue()bytebyteValue()charcharValue()voidchop()DatedateValue()doubledoubleValue()floatfloatValue()intintValue()booleanisContainer()longlongValue()shortshortValue()StringstringValue()StringstringValueEncoded()<T extends Enum>
TtoEnum(Class<T> cls)ObjecttoValue()
-
Method Details
-
byteValue
byte byteValue() -
shortValue
short shortValue() -
intValue
int intValue() -
longValue
long longValue() -
bigDecimalValue
BigDecimal bigDecimalValue() -
bigIntegerValue
BigInteger bigIntegerValue() -
floatValue
float floatValue() -
doubleValue
double doubleValue() -
booleanValue
boolean booleanValue() -
dateValue
Date dateValue() -
stringValue
String stringValue() -
stringValueEncoded
String stringValueEncoded() -
toValue
Object toValue() -
toEnum
-
isContainer
boolean isContainer() -
chop
void chop() -
charValue
char charValue()
-