public static enum CompilerOptions.IncrementalCheckMode extends java.lang.Enum<CompilerOptions.IncrementalCheckMode>
Enum Constant and Description |
---|
CHECK_IJS
The compiler should check type-only interface definitions generated above.
|
GENERATE_IJS
The compiler should generate an output file that represents the type-only interface
of the code being compiled.
|
OFF
Normal mode
|
Modifier and Type | Method and Description |
---|---|
static CompilerOptions.IncrementalCheckMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CompilerOptions.IncrementalCheckMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CompilerOptions.IncrementalCheckMode OFF
public static final CompilerOptions.IncrementalCheckMode GENERATE_IJS
public static final CompilerOptions.IncrementalCheckMode CHECK_IJS
public static CompilerOptions.IncrementalCheckMode[] values()
for (CompilerOptions.IncrementalCheckMode c : CompilerOptions.IncrementalCheckMode.values()) System.out.println(c);
public static CompilerOptions.IncrementalCheckMode 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.