Uses of Class
com.oracle.coherence.io.json.genson.stream.ValueType
-
Packages that use ValueType Package Description com.oracle.coherence.io.json.genson This package contains Genson base classes, to start with have a look atGenson.com.oracle.coherence.io.json.genson.reflect This package contains the core api providing databinding support for complex objects.com.oracle.coherence.io.json.genson.stream This package provides the streaming api used to read and write to streams. -
-
Uses of ValueType in com.oracle.coherence.io.json.genson
Methods in com.oracle.coherence.io.json.genson with parameters of type ValueType Modifier and Type Method Description Class<?>Genson. defaultClass(ValueType type)Get the default class to use for deserialization of the specifiedValueType.GensonBuilderGensonBuilder. setDefaultType(ValueType type, Class<?> clazz)Set the class to use for deserialization of the specifiedValueTypewhen the Java type cannot be determined based on static type information or JSON metadata. -
Uses of ValueType in com.oracle.coherence.io.json.genson.reflect
Methods in com.oracle.coherence.io.json.genson.reflect with parameters of type ValueType Modifier and Type Method Description Class<?>DefaultTypes. getClass(ValueType type)Get the class to use for deserialization of the specifiedValueType.DefaultTypesDefaultTypes. setClass(ValueType type, Class<?> clazz)Set the class to use for deserialization of the specifiedValueType. -
Uses of ValueType in com.oracle.coherence.io.json.genson.stream
Methods in com.oracle.coherence.io.json.genson.stream that return ValueType Modifier and Type Method Description protected ValueTypeJsonReader. consumeLiteral()Reads the next literal value into _booleanValue, _doubleValue or _intValue and returns the type of the readed literal, possible values are : INTEGER, DOUBLE, BOOLEAN, NULL.protected ValueTypeJsonReader. consumeValue()ValueTypeJsonReader. getValueType()ValueTypeObjectReader. getValueType()ValueTypeJsonReader. next()ValueTypeObjectReader. next()If we are in a object it will read the next name/value pair and if we are in an array it will read the next value (except if value is of complex type, in that case after the call to next() you must use one of beginXXX methods).static ValueTypeValueType. valueOf(String name)Returns the enum constant of this type with the specified name.static ValueType[]ValueType. values()Returns an array containing the constants of this enum type, in the order they are declared.
-