|
Compiler Tree API | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Object java.lang.Enum<TaskEvent.Kind> com.sun.source.util.TaskEvent.Kind
public static enum TaskEvent.Kind
Kind of task event.
Enum Constant Summary | |
---|---|
ANALYZE
For events relating to elements being analyzed for errors. |
|
ANNOTATION_PROCESSING
For events relating to overall annotaion processing. |
|
ANNOTATION_PROCESSING_ROUND
For events relating to an individual annotation processing round. |
|
ENTER
For events relating to elements being entered. |
|
GENERATE
For events relating to class files being generated. |
|
PARSE
For events related to the parsing of a file. |
Method Summary | |
---|---|
static TaskEvent.Kind |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static TaskEvent.Kind[] |
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 TaskEvent.Kind PARSE
public static final TaskEvent.Kind ENTER
public static final TaskEvent.Kind ANALYZE
public static final TaskEvent.Kind GENERATE
public static final TaskEvent.Kind ANNOTATION_PROCESSING
public static final TaskEvent.Kind ANNOTATION_PROCESSING_ROUND
Method Detail |
---|
public static TaskEvent.Kind[] values()
for (TaskEvent.Kind c : TaskEvent.Kind.values()) System.out.println(c);
public static TaskEvent.Kind 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
|
Compiler Tree API | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |