|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object com.fasterxml.jackson.core.ObjectCodec com.fasterxml.jackson.databind.ObjectReader
public class ObjectReader
Builder object that can be used for per-serialization configuration of deserialization parameters, such as root type to use or object to update (instead of constructing new instance).
Uses "fluent" (aka builder) pattern so that instances are immutable
(and thus fully thread-safe with no external synchronization);
new instances are constructed for different configurations.
Instances are initially constructed by ObjectMapper
and can be
reused, shared, cached; both because of thread-safety and because
instances are relatively light-weight.
Field Summary | |
---|---|
protected DeserializationConfig |
_config
General serialization configuration settings; while immutable, can use copy-constructor to create modified instances as necessary. |
protected DefaultDeserializationContext |
_context
Blueprint instance of deserialization context; used for creating actual instance when needed. |
protected InjectableValues |
_injectableValues
Values that can be injected during deserialization, if any. |
protected com.fasterxml.jackson.core.JsonFactory |
_jsonFactory
Factory used for constructing JsonGenerator s |
protected ConcurrentHashMap<JavaType,JsonDeserializer<Object>> |
_rootDeserializers
Root-level cached deserializers |
protected RootNameLookup |
_rootNames
Cache for root names used when root-wrapping is enabled. |
protected com.fasterxml.jackson.core.FormatSchema |
_schema
When using data format that uses a schema, schema is passed to parser. |
protected boolean |
_unwrapRoot
Flag that indicates whether root values are expected to be unwrapped or not |
protected Object |
_valueToUpdate
Instance to update with data binding; if any. |
protected JavaType |
_valueType
Declared type of value to instantiate during deserialization. |
Constructor Summary | |
---|---|
protected |
ObjectReader(ObjectMapper mapper,
DeserializationConfig config)
Constructor used by ObjectMapper for initial instantiation |
protected |
ObjectReader(ObjectMapper mapper,
DeserializationConfig config,
JavaType valueType,
Object valueToUpdate,
com.fasterxml.jackson.core.FormatSchema schema,
InjectableValues injectableValues)
|
protected |
ObjectReader(ObjectReader base,
DeserializationConfig config)
Copy constructor used when modifying simple feature flags |
protected |
ObjectReader(ObjectReader base,
DeserializationConfig config,
JavaType valueType,
Object valueToUpdate,
com.fasterxml.jackson.core.FormatSchema schema,
InjectableValues injectableValues)
Copy constructor used for building variations. |
Method Summary | ||
---|---|---|
protected Object |
_bind(com.fasterxml.jackson.core.JsonParser jp)
Actual implementation of value reading+binding operation. |
|
protected Object |
_bindAndClose(com.fasterxml.jackson.core.JsonParser jp)
|
|
protected JsonNode |
_bindAndCloseAsTree(com.fasterxml.jackson.core.JsonParser jp)
|
|
protected JsonNode |
_bindAsTree(com.fasterxml.jackson.core.JsonParser jp)
|
|
protected JsonDeserializer<Object> |
_findRootDeserializer(DeserializationContext ctxt,
JavaType valueType)
Method called to locate deserializer for the passed root-level value. |
|
protected static com.fasterxml.jackson.core.JsonToken |
_initForReading(com.fasterxml.jackson.core.JsonParser jp)
|
|
protected Object |
_unwrapAndDeserialize(com.fasterxml.jackson.core.JsonParser jp,
DeserializationContext ctxt,
JavaType rootType,
JsonDeserializer<Object> deser)
|
|
JsonNode |
createArrayNode()
|
|
protected DefaultDeserializationContext |
createDeserializationContext(com.fasterxml.jackson.core.JsonParser jp,
DeserializationConfig cfg)
Internal helper method called to create an instance of DeserializationContext
for deserializing a single root value. |
|
JsonNode |
createObjectNode()
|
|
com.fasterxml.jackson.core.JsonFactory |
getJsonFactory()
|
|
TypeFactory |
getTypeFactory()
|
|
boolean |
isEnabled(DeserializationFeature f)
|
|
boolean |
isEnabled(com.fasterxml.jackson.core.JsonParser.Feature f)
|
|
boolean |
isEnabled(MapperFeature f)
|
|
JsonNode |
readTree(InputStream in)
Method that reads content from given input source, using configuration of this reader, and binds it as JSON Tree. |
|
|
readTree(com.fasterxml.jackson.core.JsonParser jp)
Convenience method that binds content read using given parser, using configuration of this reader, except that content is bound as JSON tree instead of configured root value type. |
|
JsonNode |
readTree(Reader r)
Method that reads content from given input source, using configuration of this reader, and binds it as JSON Tree. |
|
JsonNode |
readTree(String content)
Method that reads content from given JSON input String, using configuration of this reader, and binds it as JSON Tree. |
|
|
readValue(byte[] src)
Method that binds content read from given byte array, using configuration of this reader. |
|
|
readValue(byte[] src,
int offset,
int length)
Method that binds content read from given byte array, using configuration of this reader. |
|
|
readValue(File src)
|
|
|
readValue(InputStream src)
Method that binds content read from given input source, using configuration of this reader. |
|
|
readValue(JsonNode src)
Convenience method for converting results from given JSON tree into given value type. |
|
|
readValue(com.fasterxml.jackson.core.JsonParser jp)
Method that binds content read using given parser, using configuration of this reader, including expected result type. |
|
|
readValue(com.fasterxml.jackson.core.JsonParser jp,
Class<T> valueType)
Convenience method that binds content read using given parser, using configuration of this reader, except that expected value type is specified with the call (instead of currently configured root type). |
|
|
readValue(com.fasterxml.jackson.core.JsonParser jp,
JavaType valueType)
Type-safe overloaded method, basically alias for readValue(JsonParser, ResolvedType) . |
|
|
readValue(com.fasterxml.jackson.core.JsonParser jp,
com.fasterxml.jackson.core.type.ResolvedType valueType)
Convenience method that binds content read using given parser, using configuration of this reader, except that expected value type is specified with the call (instead of currently configured root type). |
|
|
readValue(com.fasterxml.jackson.core.JsonParser jp,
com.fasterxml.jackson.core.type.TypeReference<?> valueTypeRef)
Convenience method that binds content read using given parser, using configuration of this reader, except that expected value type is specified with the call (instead of currently configured root type). |
|
|
readValue(Reader src)
Method that binds content read from given input source, using configuration of this reader. |
|
|
readValue(String src)
Method that binds content read from given JSON string, using configuration of this reader. |
|
|
readValue(URL src)
Method that binds content read from given input source, using configuration of this reader. |
|
|
readValues(byte[] src)
|
|
|
readValues(byte[] src,
int offset,
int length)
Method for reading sequence of Objects from parser stream. |
|
|
readValues(File src)
Method for reading sequence of Objects from parser stream. |
|
|
readValues(InputStream src)
Method for reading sequence of Objects from parser stream. |
|
|
readValues(com.fasterxml.jackson.core.JsonParser jp)
Method for reading sequence of Objects from parser stream. |
|
|
readValues(com.fasterxml.jackson.core.JsonParser jp,
Class<T> valueType)
Convenience method that is equivalent to: |
|
|
readValues(com.fasterxml.jackson.core.JsonParser jp,
JavaType valueType)
Type-safe overloaded method, basically alias for readValues(JsonParser, ResolvedType) . |
|
|
readValues(com.fasterxml.jackson.core.JsonParser jp,
com.fasterxml.jackson.core.type.ResolvedType valueType)
Convenience method that is equivalent to: |
|
|
readValues(com.fasterxml.jackson.core.JsonParser jp,
com.fasterxml.jackson.core.type.TypeReference<?> valueTypeRef)
Convenience method that is equivalent to: |
|
|
readValues(Reader src)
Method for reading sequence of Objects from parser stream. |
|
|
readValues(String json)
Method for reading sequence of Objects from parser stream. |
|
|
readValues(URL src)
Method for reading sequence of Objects from parser stream. |
|
com.fasterxml.jackson.core.JsonParser |
treeAsTokens(com.fasterxml.jackson.core.TreeNode n)
|
|
|
treeToValue(com.fasterxml.jackson.core.TreeNode n,
Class<T> valueType)
|
|
com.fasterxml.jackson.core.Version |
version()
Method that will return version information stored in and read from jar that contains this class. |
|
ObjectReader |
with(DeserializationFeature feature)
Method for constructing a new reader instance that is configured with specified feature enabled. |
|
ObjectReader |
with(DeserializationFeature first,
DeserializationFeature... other)
Method for constructing a new reader instance that is configured with specified features enabled. |
|
ObjectReader |
with(com.fasterxml.jackson.core.FormatSchema schema)
Method for constructing a new instance with configuration that passes specified FormatSchema to JsonParser that
is constructed for parsing content. |
|
ObjectReader |
with(InjectableValues injectableValues)
Method for constructing a new instance with configuration that uses passed InjectableValues to provide injectable values. |
|
ObjectReader |
with(JsonNodeFactory f)
Method for constructing a new reader instance with configuration that uses passed JsonNodeFactory for constructing JsonNode
instances. |
|
ObjectReader |
with(Locale l)
|
|
ObjectReader |
with(TimeZone tz)
|
|
ObjectReader |
withFeatures(DeserializationFeature... features)
Method for constructing a new reader instance that is configured with specified features enabled. |
|
ObjectReader |
without(DeserializationFeature feature)
Method for constructing a new reader instance that is configured with specified feature disabled. |
|
ObjectReader |
without(DeserializationFeature first,
DeserializationFeature... other)
Method for constructing a new reader instance that is configured with specified features disabled. |
|
ObjectReader |
withoutFeatures(DeserializationFeature... features)
Method for constructing a new reader instance that is configured with specified features disabled. |
|
ObjectReader |
withRootName(String rootName)
Method for constructing a new instance with configuration that specifies what root name to expect for "root name unwrapping". |
|
ObjectReader |
withType(Class<?> valueType)
Method for constructing a new reader instance that is configured to data bind into specified type. |
|
ObjectReader |
withType(JavaType valueType)
Method for constructing a new reader instance that is configured to data bind into specified type. |
|
ObjectReader |
withType(Type valueType)
Method for constructing a new reader instance that is configured to data bind into specified type. |
|
ObjectReader |
withType(com.fasterxml.jackson.core.type.TypeReference<?> valueTypeRef)
Method for constructing a new reader instance that is configured to data bind into specified type. |
|
ObjectReader |
withValueToUpdate(Object value)
Method for constructing a new instance with configuration that updates passed Object (as root value), instead of constructing a new value. |
|
ObjectReader |
withView(Class<?> activeView)
Method for constructing a new instance with configuration that uses specified View for filtering. |
|
void |
writeValue(com.fasterxml.jackson.core.JsonGenerator jgen,
Object value)
|
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
---|
protected final DeserializationConfig _config
protected final DefaultDeserializationContext _context
protected final com.fasterxml.jackson.core.JsonFactory _jsonFactory
JsonGenerator
s
protected final boolean _unwrapRoot
protected final JavaType _valueType
_valueToUpdate
is non-null, only used for
locating deserializer.
protected final Object _valueToUpdate
ArrayType
; array
types can not be modified because array size is immutable.
protected final com.fasterxml.jackson.core.FormatSchema _schema
protected final InjectableValues _injectableValues
protected final ConcurrentHashMap<JavaType,JsonDeserializer<Object>> _rootDeserializers
protected final RootNameLookup _rootNames
Constructor Detail |
---|
protected ObjectReader(ObjectMapper mapper, DeserializationConfig config)
ObjectMapper
for initial instantiation
protected ObjectReader(ObjectMapper mapper, DeserializationConfig config, JavaType valueType, Object valueToUpdate, com.fasterxml.jackson.core.FormatSchema schema, InjectableValues injectableValues)
protected ObjectReader(ObjectReader base, DeserializationConfig config, JavaType valueType, Object valueToUpdate, com.fasterxml.jackson.core.FormatSchema schema, InjectableValues injectableValues)
protected ObjectReader(ObjectReader base, DeserializationConfig config)
Method Detail |
---|
public com.fasterxml.jackson.core.Version version()
version
in interface com.fasterxml.jackson.core.Versioned
public ObjectReader with(DeserializationFeature feature)
public ObjectReader with(DeserializationFeature first, DeserializationFeature... other)
public ObjectReader withFeatures(DeserializationFeature... features)
public ObjectReader without(DeserializationFeature feature)
public ObjectReader without(DeserializationFeature first, DeserializationFeature... other)
public ObjectReader withoutFeatures(DeserializationFeature... features)
public ObjectReader with(InjectableValues injectableValues)
InjectableValues
to provide injectable values.
Note that the method does NOT change state of this reader, but rather construct and returns a newly configured instance.
public ObjectReader with(JsonNodeFactory f)
JsonNodeFactory
for constructing JsonNode
instances.
Note that the method does NOT change state of this reader, but rather construct and returns a newly configured instance.
public ObjectReader withRootName(String rootName)
DeserializationConfig.withRootName(String)
for
details.
Note that the method does NOT change state of this reader, but rather construct and returns a newly configured instance.
public ObjectReader with(com.fasterxml.jackson.core.FormatSchema schema)
FormatSchema
to JsonParser
that
is constructed for parsing content.
Note that the method does NOT change state of this reader, but rather construct and returns a newly configured instance.
public ObjectReader withType(JavaType valueType)
Note that the method does NOT change state of this reader, but rather construct and returns a newly configured instance.
public ObjectReader withType(Class<?> valueType)
Note that the method does NOT change state of this reader, but rather construct and returns a newly configured instance.
public ObjectReader withType(Type valueType)
Note that the method does NOT change state of this reader, but rather construct and returns a newly configured instance.
public ObjectReader withType(com.fasterxml.jackson.core.type.TypeReference<?> valueTypeRef)
Note that the method does NOT change state of this reader, but rather construct and returns a newly configured instance.
public ObjectReader withValueToUpdate(Object value)
Note that the method does NOT change state of this reader, but rather construct and returns a newly configured instance.
public ObjectReader withView(Class<?> activeView)
Note that the method does NOT change state of this reader, but rather construct and returns a newly configured instance.
public ObjectReader with(Locale l)
public ObjectReader with(TimeZone tz)
public boolean isEnabled(DeserializationFeature f)
public boolean isEnabled(MapperFeature f)
public boolean isEnabled(com.fasterxml.jackson.core.JsonParser.Feature f)
public com.fasterxml.jackson.core.JsonFactory getJsonFactory()
getJsonFactory
in class com.fasterxml.jackson.core.ObjectCodec
public TypeFactory getTypeFactory()
public <T> T readValue(com.fasterxml.jackson.core.JsonParser jp) throws IOException, com.fasterxml.jackson.core.JsonProcessingException
withValueToUpdate(Object)
.
IOException
com.fasterxml.jackson.core.JsonProcessingException
public <T> T readValue(com.fasterxml.jackson.core.JsonParser jp, Class<T> valueType) throws IOException, com.fasterxml.jackson.core.JsonProcessingException
withValueToUpdate(Object)
.
readValue
in class com.fasterxml.jackson.core.ObjectCodec
IOException
com.fasterxml.jackson.core.JsonProcessingException
public <T> T readValue(com.fasterxml.jackson.core.JsonParser jp, com.fasterxml.jackson.core.type.TypeReference<?> valueTypeRef) throws IOException, com.fasterxml.jackson.core.JsonProcessingException
withValueToUpdate(Object)
.
readValue
in class com.fasterxml.jackson.core.ObjectCodec
IOException
com.fasterxml.jackson.core.JsonProcessingException
public <T> T readValue(com.fasterxml.jackson.core.JsonParser jp, com.fasterxml.jackson.core.type.ResolvedType valueType) throws IOException, com.fasterxml.jackson.core.JsonProcessingException
withValueToUpdate(Object)
.
readValue
in class com.fasterxml.jackson.core.ObjectCodec
IOException
com.fasterxml.jackson.core.JsonProcessingException
public <T> T readValue(com.fasterxml.jackson.core.JsonParser jp, JavaType valueType) throws IOException, com.fasterxml.jackson.core.JsonProcessingException
readValue(JsonParser, ResolvedType)
.
IOException
com.fasterxml.jackson.core.JsonProcessingException
public <T extends com.fasterxml.jackson.core.TreeNode> T readTree(com.fasterxml.jackson.core.JsonParser jp) throws IOException, com.fasterxml.jackson.core.JsonProcessingException
Note: if an object was specified with withValueToUpdate(java.lang.Object)
, it
will be ignored.
readTree
in class com.fasterxml.jackson.core.ObjectCodec
IOException
com.fasterxml.jackson.core.JsonProcessingException
public <T> Iterator<T> readValues(com.fasterxml.jackson.core.JsonParser jp, Class<T> valueType) throws IOException, com.fasterxml.jackson.core.JsonProcessingException
withType(valueType).readValues(jp);
readValues
in class com.fasterxml.jackson.core.ObjectCodec
IOException
com.fasterxml.jackson.core.JsonProcessingException
public <T> Iterator<T> readValues(com.fasterxml.jackson.core.JsonParser jp, com.fasterxml.jackson.core.type.TypeReference<?> valueTypeRef) throws IOException, com.fasterxml.jackson.core.JsonProcessingException
withType(valueTypeRef).readValues(jp);
readValues
in class com.fasterxml.jackson.core.ObjectCodec
IOException
com.fasterxml.jackson.core.JsonProcessingException
public <T> Iterator<T> readValues(com.fasterxml.jackson.core.JsonParser jp, com.fasterxml.jackson.core.type.ResolvedType valueType) throws IOException, com.fasterxml.jackson.core.JsonProcessingException
withType(valueType).readValues(jp);
readValues
in class com.fasterxml.jackson.core.ObjectCodec
IOException
com.fasterxml.jackson.core.JsonProcessingException
public <T> Iterator<T> readValues(com.fasterxml.jackson.core.JsonParser jp, JavaType valueType) throws IOException, com.fasterxml.jackson.core.JsonProcessingException
readValues(JsonParser, ResolvedType)
.
IOException
com.fasterxml.jackson.core.JsonProcessingException
public <T> T readValue(InputStream src) throws IOException, com.fasterxml.jackson.core.JsonProcessingException
withValueToUpdate(Object)
.
IOException
com.fasterxml.jackson.core.JsonProcessingException
public <T> T readValue(Reader src) throws IOException, com.fasterxml.jackson.core.JsonProcessingException
withValueToUpdate(Object)
.
IOException
com.fasterxml.jackson.core.JsonProcessingException
public <T> T readValue(String src) throws IOException, com.fasterxml.jackson.core.JsonProcessingException
withValueToUpdate(Object)
.
IOException
com.fasterxml.jackson.core.JsonProcessingException
public <T> T readValue(byte[] src) throws IOException, com.fasterxml.jackson.core.JsonProcessingException
withValueToUpdate(Object)
.
IOException
com.fasterxml.jackson.core.JsonProcessingException
public <T> T readValue(byte[] src, int offset, int length) throws IOException, com.fasterxml.jackson.core.JsonProcessingException
withValueToUpdate(Object)
.
IOException
com.fasterxml.jackson.core.JsonProcessingException
public <T> T readValue(File src) throws IOException, com.fasterxml.jackson.core.JsonProcessingException
IOException
com.fasterxml.jackson.core.JsonProcessingException
public <T> T readValue(URL src) throws IOException, com.fasterxml.jackson.core.JsonProcessingException
withValueToUpdate(Object)
.
IOException
com.fasterxml.jackson.core.JsonProcessingException
public <T> T readValue(JsonNode src) throws IOException, com.fasterxml.jackson.core.JsonProcessingException
objectReader.readValue(src.traverse())
IOException
com.fasterxml.jackson.core.JsonProcessingException
public JsonNode readTree(InputStream in) throws IOException, com.fasterxml.jackson.core.JsonProcessingException
Note that if an object was specified with a call to
withValueToUpdate(Object)
it will just be ignored; result is always a newly constructed
JsonNode
instance.
IOException
com.fasterxml.jackson.core.JsonProcessingException
public JsonNode readTree(Reader r) throws IOException, com.fasterxml.jackson.core.JsonProcessingException
Note that if an object was specified with a call to
withValueToUpdate(Object)
it will just be ignored; result is always a newly constructed
JsonNode
instance.
IOException
com.fasterxml.jackson.core.JsonProcessingException
public JsonNode readTree(String content) throws IOException, com.fasterxml.jackson.core.JsonProcessingException
Note that if an object was specified with a call to
withValueToUpdate(Object)
it will just be ignored; result is always a newly constructed
JsonNode
instance.
IOException
com.fasterxml.jackson.core.JsonProcessingException
public <T> MappingIterator<T> readValues(com.fasterxml.jackson.core.JsonParser jp) throws IOException, com.fasterxml.jackson.core.JsonProcessingException
IOException
com.fasterxml.jackson.core.JsonProcessingException
public <T> MappingIterator<T> readValues(InputStream src) throws IOException, com.fasterxml.jackson.core.JsonProcessingException
IOException
com.fasterxml.jackson.core.JsonProcessingException
public <T> MappingIterator<T> readValues(Reader src) throws IOException, com.fasterxml.jackson.core.JsonProcessingException
IOException
com.fasterxml.jackson.core.JsonProcessingException
public <T> MappingIterator<T> readValues(String json) throws IOException, com.fasterxml.jackson.core.JsonProcessingException
IOException
com.fasterxml.jackson.core.JsonProcessingException
public <T> MappingIterator<T> readValues(byte[] src, int offset, int length) throws IOException, com.fasterxml.jackson.core.JsonProcessingException
IOException
com.fasterxml.jackson.core.JsonProcessingException
public final <T> MappingIterator<T> readValues(byte[] src) throws IOException, com.fasterxml.jackson.core.JsonProcessingException
IOException
com.fasterxml.jackson.core.JsonProcessingException
public <T> MappingIterator<T> readValues(File src) throws IOException, com.fasterxml.jackson.core.JsonProcessingException
IOException
com.fasterxml.jackson.core.JsonProcessingException
public <T> MappingIterator<T> readValues(URL src) throws IOException, com.fasterxml.jackson.core.JsonProcessingException
IOException
com.fasterxml.jackson.core.JsonProcessingException
protected final DefaultDeserializationContext createDeserializationContext(com.fasterxml.jackson.core.JsonParser jp, DeserializationConfig cfg)
DeserializationContext
for deserializing a single root value.
Can be overridden if a custom context is needed.
protected Object _bind(com.fasterxml.jackson.core.JsonParser jp) throws IOException, com.fasterxml.jackson.core.JsonParseException, JsonMappingException
IOException
com.fasterxml.jackson.core.JsonParseException
JsonMappingException
protected Object _bindAndClose(com.fasterxml.jackson.core.JsonParser jp) throws IOException, com.fasterxml.jackson.core.JsonParseException, JsonMappingException
IOException
com.fasterxml.jackson.core.JsonParseException
JsonMappingException
protected JsonNode _bindAsTree(com.fasterxml.jackson.core.JsonParser jp) throws IOException, com.fasterxml.jackson.core.JsonParseException, JsonMappingException
IOException
com.fasterxml.jackson.core.JsonParseException
JsonMappingException
protected JsonNode _bindAndCloseAsTree(com.fasterxml.jackson.core.JsonParser jp) throws IOException, com.fasterxml.jackson.core.JsonParseException, JsonMappingException
IOException
com.fasterxml.jackson.core.JsonParseException
JsonMappingException
protected static com.fasterxml.jackson.core.JsonToken _initForReading(com.fasterxml.jackson.core.JsonParser jp) throws IOException, com.fasterxml.jackson.core.JsonParseException, JsonMappingException
IOException
com.fasterxml.jackson.core.JsonParseException
JsonMappingException
protected JsonDeserializer<Object> _findRootDeserializer(DeserializationContext ctxt, JavaType valueType) throws JsonMappingException
JsonMappingException
protected Object _unwrapAndDeserialize(com.fasterxml.jackson.core.JsonParser jp, DeserializationContext ctxt, JavaType rootType, JsonDeserializer<Object> deser) throws IOException, com.fasterxml.jackson.core.JsonParseException, JsonMappingException
IOException
com.fasterxml.jackson.core.JsonParseException
JsonMappingException
public JsonNode createArrayNode()
createArrayNode
in class com.fasterxml.jackson.core.ObjectCodec
public JsonNode createObjectNode()
createObjectNode
in class com.fasterxml.jackson.core.ObjectCodec
public com.fasterxml.jackson.core.JsonParser treeAsTokens(com.fasterxml.jackson.core.TreeNode n)
treeAsTokens
in class com.fasterxml.jackson.core.ObjectCodec
public <T> T treeToValue(com.fasterxml.jackson.core.TreeNode n, Class<T> valueType) throws com.fasterxml.jackson.core.JsonProcessingException
treeToValue
in class com.fasterxml.jackson.core.ObjectCodec
com.fasterxml.jackson.core.JsonProcessingException
public void writeValue(com.fasterxml.jackson.core.JsonGenerator jgen, Object value) throws IOException, com.fasterxml.jackson.core.JsonProcessingException
writeValue
in class com.fasterxml.jackson.core.ObjectCodec
IOException
com.fasterxml.jackson.core.JsonProcessingException
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |