Package org.jboss.as.jaxrs
Enum JacksonAnnotations
- java.lang.Object
-
- java.lang.Enum<JacksonAnnotations>
-
- org.jboss.as.jaxrs.JacksonAnnotations
-
- All Implemented Interfaces:
Serializable,Comparable<JacksonAnnotations>
public enum JacksonAnnotations extends Enum<JacksonAnnotations>
Class that stores theDotNames of Jackson 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 JacksonAnnotationsvalueOf(String name)Returns the enum constant of this type with the specified name.static JacksonAnnotations[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
JacksonAnnotation
public static final JacksonAnnotations JacksonAnnotation
-
JsonAnyGetter
public static final JacksonAnnotations JsonAnyGetter
-
JsonAnySetter
public static final JacksonAnnotations JsonAnySetter
-
JsonAutoDetect
public static final JacksonAnnotations JsonAutoDetect
-
JsonBackReference
public static final JacksonAnnotations JsonBackReference
-
JsonCreator
public static final JacksonAnnotations JsonCreator
-
JsonGetter
public static final JacksonAnnotations JsonGetter
-
JsonIgnore
public static final JacksonAnnotations JsonIgnore
-
JsonIgnoreProperties
public static final JacksonAnnotations JsonIgnoreProperties
-
JsonIgnoreType
public static final JacksonAnnotations JsonIgnoreType
-
JsonManagedReference
public static final JacksonAnnotations JsonManagedReference
-
JsonProperty
public static final JacksonAnnotations JsonProperty
-
JsonPropertyOrder
public static final JacksonAnnotations JsonPropertyOrder
-
JsonRawValue
public static final JacksonAnnotations JsonRawValue
-
JsonSetter
public static final JacksonAnnotations JsonSetter
-
JsonSubTypes
public static final JacksonAnnotations JsonSubTypes
-
JsonTypeInfo
public static final JacksonAnnotations JsonTypeInfo
-
JsonTypeName
public static final JacksonAnnotations JsonTypeName
-
JsonUnwrapped
public static final JacksonAnnotations JsonUnwrapped
-
JsonValue
public static final JacksonAnnotations JsonValue
-
JsonWriteNullProperties
public static final JacksonAnnotations JsonWriteNullProperties
-
-
Method Detail
-
values
public static JacksonAnnotations[] 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 (JacksonAnnotations c : JacksonAnnotations.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static JacksonAnnotations 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()
-
-