|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<Annotations>
org.codehaus.jackson.jaxrs.Annotations
public enum Annotations
Enumeration that defines standard annotation sets available for configuring data binding aspects.
Enum Constant Summary | |
---|---|
JACKSON
Standard Jackson annotations, defined in Jackson core and mapper packages |
|
JAXB
Standard JAXB annotations, used in a way that approximates expected definitions (since JAXB defines XML aspects, not all features map well to JSON handling) |
Method Summary | |
---|---|
static Annotations |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static Annotations[] |
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 Annotations JACKSON
public static final Annotations JAXB
Method Detail |
---|
public static Annotations[] values()
for (Annotations c : Annotations.values()) System.out.println(c);
public static Annotations 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 |