Enum Class AnnotationIntrospector.ReferenceProperty.Type
java.lang.Object
java.lang.Enum<AnnotationIntrospector.ReferenceProperty.Type>
tools.jackson.databind.AnnotationIntrospector.ReferenceProperty.Type
- All Implemented Interfaces:
Serializable, Comparable<AnnotationIntrospector.ReferenceProperty.Type>, Constable
- Enclosing class:
AnnotationIntrospector.ReferenceProperty
public static enum AnnotationIntrospector.ReferenceProperty.Type
extends Enum<AnnotationIntrospector.ReferenceProperty.Type>
-
Nested Class Summary
Nested classes/interfaces inherited from class Enum
Enum.EnumDesc<E> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionReference property that Jackson manages by suppressing it during serialization, and reconstructing during deserialization.Reference property that Jackson manages and that is serialized normally (by serializing reference object), but is used for resolving back references during deserialization. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this class with the specified name.values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
MANAGED_REFERENCE
Reference property that Jackson manages and that is serialized normally (by serializing reference object), but is used for resolving back references during deserialization. Usually this can be defined by usingJsonManagedReference -
BACK_REFERENCE
Reference property that Jackson manages by suppressing it during serialization, and reconstructing during deserialization. Usually this can be defined by usingJsonBackReference
-
-
Constructor Details
-
Type
private Type()
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum class has no constant with the specified nameNullPointerException- if the argument is null
-