Package org.apache.groovy.json.internal
Interface Value
- All Known Implementing Classes:
- CharSequenceValue,- NumberValue,- ValueContainer
public interface Value
- 
Method SummaryModifier 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- 
byteValuebyte byteValue()
- 
shortValueshort shortValue()
- 
intValueint intValue()
- 
longValuelong longValue()
- 
bigDecimalValueBigDecimal bigDecimalValue()
- 
bigIntegerValueBigInteger bigIntegerValue()
- 
floatValuefloat floatValue()
- 
doubleValuedouble doubleValue()
- 
booleanValueboolean booleanValue()
- 
dateValueDate dateValue()
- 
stringValueString stringValue()
- 
stringValueEncodedString stringValueEncoded()
- 
toValueObject toValue()
- 
toEnum
- 
isContainerboolean isContainer()
- 
chopvoid chop()
- 
charValuechar charValue()
 
-