public static enum AnnotationManager.Action extends Enum<AnnotationManager.Action>
| Enum Constant and Description |
|---|
ADD
To be returned when a manager adds an annotation.
|
REMOVE
To be returned when a manager removes an annotation (it will override
the default behavior or subsequent annotation managers).
|
VOID
To be returned when a manager does not impact the annotation (the
context will delegate to other managers or to the default behavior).
|
| Modifier and Type | Method and Description |
|---|---|
static AnnotationManager.Action |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AnnotationManager.Action[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AnnotationManager.Action ADD
public static final AnnotationManager.Action VOID
public static final AnnotationManager.Action REMOVE
public static AnnotationManager.Action[] values()
for (AnnotationManager.Action c : AnnotationManager.Action.values()) System.out.println(c);
public static AnnotationManager.Action valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is null