Package org.jboss.as.jaxrs
Enum Jackson2Annotations
- java.lang.Object
-
- java.lang.Enum<Jackson2Annotations>
-
- org.jboss.as.jaxrs.Jackson2Annotations
-
- All Implemented Interfaces:
Serializable,Comparable<Jackson2Annotations>
public enum Jackson2Annotations extends Enum<Jackson2Annotations>
Class that stores theDotNames of Jackson2 annotations- Author:
- Alessio Soldano
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description org.jboss.jandex.DotNamegetDotName()StringgetSimpleName()static Jackson2AnnotationsvalueOf(String name)Returns the enum constant of this type with the specified name.static Jackson2Annotations[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
JacksonAnnotation
public static final Jackson2Annotations JacksonAnnotation
-
JacksonInject
public static final Jackson2Annotations JacksonInject
-
JsonAnyGetter
public static final Jackson2Annotations JsonAnyGetter
-
JsonAnySetter
public static final Jackson2Annotations JsonAnySetter
-
JsonAutoDetect
public static final Jackson2Annotations JsonAutoDetect
-
JsonBackReference
public static final Jackson2Annotations JsonBackReference
-
JsonClassDescription
public static final Jackson2Annotations JsonClassDescription
-
JsonCreator
public static final Jackson2Annotations JsonCreator
-
JsonEnumDefaultValue
public static final Jackson2Annotations JsonEnumDefaultValue
-
JsonFilter
public static final Jackson2Annotations JsonFilter
-
JsonFormat
public static final Jackson2Annotations JsonFormat
-
JsonGetter
public static final Jackson2Annotations JsonGetter
-
JsonIdentityInfo
public static final Jackson2Annotations JsonIdentityInfo
-
JsonIdentityReference
public static final Jackson2Annotations JsonIdentityReference
-
JsonIgnore
public static final Jackson2Annotations JsonIgnore
-
JsonIgnoreProperties
public static final Jackson2Annotations JsonIgnoreProperties
-
JsonIgnoreType
public static final Jackson2Annotations JsonIgnoreType
-
JsonInclude
public static final Jackson2Annotations JsonInclude
-
JsonManagedReference
public static final Jackson2Annotations JsonManagedReference
-
JsonProperty
public static final Jackson2Annotations JsonProperty
-
JsonPropertyDescription
public static final Jackson2Annotations JsonPropertyDescription
-
JsonPropertyOrder
public static final Jackson2Annotations JsonPropertyOrder
-
JsonRawValue
public static final Jackson2Annotations JsonRawValue
-
JsonRootName
public static final Jackson2Annotations JsonRootName
-
JsonSetter
public static final Jackson2Annotations JsonSetter
-
JsonSubTypes
public static final Jackson2Annotations JsonSubTypes
-
JsonTypeId
public static final Jackson2Annotations JsonTypeId
-
JsonTypeInfo
public static final Jackson2Annotations JsonTypeInfo
-
JsonTypeName
public static final Jackson2Annotations JsonTypeName
-
JsonUnwrapped
public static final Jackson2Annotations JsonUnwrapped
-
JsonValue
public static final Jackson2Annotations JsonValue
-
JsonView
public static final Jackson2Annotations JsonView
-
-
Method Detail
-
values
public static Jackson2Annotations[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (Jackson2Annotations c : Jackson2Annotations.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Jackson2Annotations valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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 type has no constant with the specified nameNullPointerException- if the argument is null
-
getDotName
public org.jboss.jandex.DotName getDotName()
-
getSimpleName
public String getSimpleName()
-
-