|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<JsonTypeInfo.As>
com.fasterxml.jackson.annotation.JsonTypeInfo.As
public static enum JsonTypeInfo.As
Definition of standard type inclusion mechanisms for type metadata.
Used for standard metadata types, except for JsonTypeInfo.Id.NONE
.
May or may not be used for custom types (JsonTypeInfo.Id.CUSTOM
).
Enum Constant Summary | |
---|---|
EXTERNAL_PROPERTY
Inclusion mechanism similar to PROPERTY , except that
property is included one-level higher in hierarchy, i.e. |
|
PROPERTY
Inclusion mechanism that uses a single configurable property, included along with actual data (POJO properties) as a separate meta-property. |
|
WRAPPER_ARRAY
Inclusion mechanism that wraps typed JSON value (POJO serialized as JSON) in a 2-element JSON array: first element is the serialized type identifier, and second element the serialized POJO as JSON Object. |
|
WRAPPER_OBJECT
Inclusion mechanism that wraps typed JSON value (POJO serialized as JSON) in a JSON Object that has a single entry, where field name is serialized type identifier, and value is the actual JSON value. |
Method Summary | |
---|---|
static JsonTypeInfo.As |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static JsonTypeInfo.As[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final JsonTypeInfo.As PROPERTY
Default choice for inclusion.
public static final JsonTypeInfo.As WRAPPER_OBJECT
Note: can only be used if type information can be serialized as String. This is true for standard type metadata types, but not necessarily for custom types.
public static final JsonTypeInfo.As WRAPPER_ARRAY
public static final JsonTypeInfo.As EXTERNAL_PROPERTY
PROPERTY
, except that
property is included one-level higher in hierarchy, i.e. as sibling
property at same level as JSON Object to type.
Note that this choice can only be used for properties, not
for types (classes). Trying to use it for classes will result in
inclusion strategy of basic PROPERTY
instead.
Method Detail |
---|
public static JsonTypeInfo.As[] values()
for (JsonTypeInfo.As c : JsonTypeInfo.As.values()) System.out.println(c);
public static JsonTypeInfo.As valueOf(String name)
name
- the name of the enum constant to be returned.
IllegalArgumentException
- if this enum type has no constant
with the specified name
NullPointerException
- if the argument is null
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |