|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use Named | |
---|---|
com.fasterxml.jackson.databind | Contains basic mapper (conversion) functionality that
allows for converting between regular streaming json content and
Java objects (beans or Tree Model: support for both is via
ObjectMapper class, as well
as convenience methods included in
JsonParser |
com.fasterxml.jackson.databind.deser | Contains implementation classes of deserialization part of data binding. |
com.fasterxml.jackson.databind.deser.impl | Contains those implementation classes of deserialization part of data binding that are not considered part of public or semi-public interfaces. |
com.fasterxml.jackson.databind.introspect | Functionality needed for Bean introspection, required for detecting accessors and mutators for Beans, as well as locating and handling method annotations. |
com.fasterxml.jackson.databind.ser | Contains implementation classes of serialization part of data binding. |
com.fasterxml.jackson.databind.ser.impl | Contains implementation classes of serialization part of data binding. |
com.fasterxml.jackson.databind.util | Utility classes for Mapper package. |
Uses of Named in com.fasterxml.jackson.databind |
---|
Subinterfaces of Named in com.fasterxml.jackson.databind | |
---|---|
interface |
BeanProperty
Bean properties are logical entities that represent data that Java objects (POJOs (Plain Old Java Objects), sometimes also called "beans") contain; and that are accessed using accessors (methods like getters and setters, fields, contstructor parametrers). |
Classes in com.fasterxml.jackson.databind that implement Named | |
---|---|
static class |
BeanProperty.Std
Simple stand-alone implementation, useful as a placeholder or base class for more complex implementations. |
Uses of Named in com.fasterxml.jackson.databind.deser |
---|
Classes in com.fasterxml.jackson.databind.deser that implement Named | |
---|---|
class |
CreatorProperty
This concrete sub-class implements property that is passed via Creator (constructor or static factory method). |
class |
SettableBeanProperty
Base class for deserilizable properties of a bean: contains both type and name definitions, and reflection-based set functionality. |
Uses of Named in com.fasterxml.jackson.databind.deser.impl |
---|
Classes in com.fasterxml.jackson.databind.deser.impl that implement Named | |
---|---|
class |
FieldProperty
This concrete sub-class implements property that is set directly assigning to a Field. |
class |
InnerClassProperty
This sub-class is used to handle special case of value being a non-static inner class. |
class |
ManagedReferenceProperty
Wrapper property that is used to handle managed (forward) properties (see [JACKSON-235] for more information). |
class |
MethodProperty
This concrete sub-class implements property that is set using regular "setter" method. |
class |
ObjectIdValueProperty
Specialized SettableBeanProperty implementation used
for virtual property that represents Object Id that is used
for some POJO types (or properties). |
class |
SetterlessProperty
This concrete sub-class implements Collection or Map property that is indirectly by getting the property value and directly modifying it. |
class |
ValueInjector
Class that encapsulates details of value injection that occurs before deserialization of a POJO. |
Uses of Named in com.fasterxml.jackson.databind.introspect |
---|
Classes in com.fasterxml.jackson.databind.introspect that implement Named | |
---|---|
class |
BeanPropertyDefinition
Simple value classes that contain definitions of properties, used during introspection of properties to use for serialization and deserialization purposes. |
class |
POJOPropertyBuilder
Helper class used for aggregating information about a single potential POJO property. |
Uses of Named in com.fasterxml.jackson.databind.ser |
---|
Classes in com.fasterxml.jackson.databind.ser that implement Named | |
---|---|
class |
BeanPropertyWriter
Base bean property handler class, which implements common parts of reflection-based functionality for accessing a property value and serializing it. |
Uses of Named in com.fasterxml.jackson.databind.ser.impl |
---|
Classes in com.fasterxml.jackson.databind.ser.impl that implement Named | |
---|---|
class |
UnwrappingBeanPropertyWriter
Variant of BeanPropertyWriter which will handle unwrapping
of JSON Object (including of properties of Object within surrounding
JSON object, and not as sub-object). |
Uses of Named in com.fasterxml.jackson.databind.util |
---|
Classes in com.fasterxml.jackson.databind.util that implement Named | |
---|---|
class |
SimpleBeanPropertyDefinition
Simple immutable BeanPropertyDefinition implementation that can
be wrapped around a AnnotatedMember that is a simple
accessor (getter) or mutator (setter, constructor parameter)
(or both, for fields). |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |