|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | ||||||||
java.lang.Objectjava.lang.Enum<JavacAnnotationProcessingMode>
org.schmant.task.template.jdk.javac.JavacAnnotationProcessingMode
public enum JavacAnnotationProcessingMode
This is an enumeration over the different annotation processing modes for
javac. "BOTH" means that annotations are processed and classes are
compiled (the default setting for javac).
| Enum Constant Summary | |
|---|---|
BOTH
Annotations are processed and classes are compiled. |
|
NONE
No annotations are processed. |
|
ONLY
Annotations are processed, but classes are not compiled. |
|
| Method Summary | |
|---|---|
String |
getKeyword()
|
String |
toString()
|
static JavacAnnotationProcessingMode |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static JavacAnnotationProcessingMode[] |
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, valueOf |
| Methods inherited from class java.lang.Object |
|---|
getClass, notify, notifyAll, wait, wait, wait |
| Enum Constant Detail |
|---|
public static final JavacAnnotationProcessingMode NONE
public static final JavacAnnotationProcessingMode ONLY
public static final JavacAnnotationProcessingMode BOTH
| Method Detail |
|---|
public static JavacAnnotationProcessingMode[] values()
for (JavacAnnotationProcessingMode c : JavacAnnotationProcessingMode.values()) System.out.println(c);
public static JavacAnnotationProcessingMode 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 nullpublic String getKeyword()
public String toString()
toString in class Enum<JavacAnnotationProcessingMode>
|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | ||||||||