protected static enum JavaCompiler.ImplicitSourcePolicy extends Enum<JavaCompiler.ImplicitSourcePolicy>
Enum Constant and Description |
---|
CLASS
Generate classes for implicitly read source files.
|
NONE
Don't generate or process implicitly read source files.
|
UNSET
Like CLASS, but generate warnings if annotation processing occurs
|
Modifier and Type | Method and Description |
---|---|
static JavaCompiler.ImplicitSourcePolicy |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static JavaCompiler.ImplicitSourcePolicy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final JavaCompiler.ImplicitSourcePolicy NONE
public static final JavaCompiler.ImplicitSourcePolicy CLASS
public static final JavaCompiler.ImplicitSourcePolicy UNSET
public static JavaCompiler.ImplicitSourcePolicy[] values()
for (JavaCompiler.ImplicitSourcePolicy c : JavaCompiler.ImplicitSourcePolicy.values()) System.out.println(c);
public static JavaCompiler.ImplicitSourcePolicy 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 nullCopyright © 2017 earcam. All rights reserved.