Package org.apache.groovy.json.internal
Interface Value
- 
- All Known Implementing Classes:
- CharSequenceValue,- NumberValue,- ValueContainer
 
 public interface Value
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods 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 Detail- 
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() 
 - 
isContainerboolean isContainer() 
 - 
chopvoid chop() 
 - 
charValuechar charValue() 
 
- 
 
-