public static enum AnnotationBatcher.Change extends Enum<AnnotationBatcher.Change>
AnnotationBatcher.setValues(AnnotationType, List, Unit, boolean)
Enum Constant and Description |
---|
ADDED
A new annotation was created.
|
DELETED
An existing annotation was deleted.
|
NO_CHANGE
The annotation was not changed.
|
UPDATED
An existing annotation was updated.
|
Modifier and Type | Field and Description |
---|---|
private ChangeType |
logChangeType |
Modifier and Type | Method and Description |
---|---|
(package private) ChangeType |
getLogChangeType() |
static AnnotationBatcher.Change |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AnnotationBatcher.Change[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AnnotationBatcher.Change NO_CHANGE
public static final AnnotationBatcher.Change ADDED
public static final AnnotationBatcher.Change UPDATED
public static final AnnotationBatcher.Change DELETED
private final ChangeType logChangeType
public static AnnotationBatcher.Change[] values()
for (AnnotationBatcher.Change c : AnnotationBatcher.Change.values()) System.out.println(c);
public static AnnotationBatcher.Change 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 nullChangeType getLogChangeType()