public static enum CompilerOptions.DevMode extends java.lang.Enum<CompilerOptions.DevMode>
Enum Constant and Description |
---|
EVERY_PASS
After every pass
|
OFF
Don't do any extra checks.
|
START
After the initial parse
|
START_AND_END
At the start and at the end of all optimizations.
|
Modifier and Type | Method and Description |
---|---|
static CompilerOptions.DevMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CompilerOptions.DevMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CompilerOptions.DevMode OFF
public static final CompilerOptions.DevMode START
public static final CompilerOptions.DevMode START_AND_END
public static final CompilerOptions.DevMode EVERY_PASS
public static CompilerOptions.DevMode[] values()
for (CompilerOptions.DevMode c : CompilerOptions.DevMode.values()) System.out.println(c);
public static CompilerOptions.DevMode valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullCopyright © 2009-2017 Google. All Rights Reserved.