public static enum AnnotationProcessingEvent.Operation extends Enum<AnnotationProcessingEvent.Operation>
Enum Constant and Description |
---|
GET_COMPLETIONS |
GET_SUPPORTED_ANNOTATION_TYPES |
GET_SUPPORTED_OPTIONS |
GET_SUPPORTED_SOURCE_VERSION |
INIT |
PROCESS |
Modifier and Type | Method and Description |
---|---|
static AnnotationProcessingEvent.Operation |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AnnotationProcessingEvent.Operation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AnnotationProcessingEvent.Operation GET_COMPLETIONS
public static final AnnotationProcessingEvent.Operation GET_SUPPORTED_ANNOTATION_TYPES
public static final AnnotationProcessingEvent.Operation GET_SUPPORTED_OPTIONS
public static final AnnotationProcessingEvent.Operation GET_SUPPORTED_SOURCE_VERSION
public static final AnnotationProcessingEvent.Operation INIT
public static final AnnotationProcessingEvent.Operation PROCESS
public static AnnotationProcessingEvent.Operation[] values()
for (AnnotationProcessingEvent.Operation c : AnnotationProcessingEvent.Operation.values()) System.out.println(c);
public static AnnotationProcessingEvent.Operation 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