Package com.google.javascript.jscomp
Enum Class CompilerOptions.IncrementalCheckMode
java.lang.Object
java.lang.Enum<CompilerOptions.IncrementalCheckMode>
com.google.javascript.jscomp.CompilerOptions.IncrementalCheckMode
- All Implemented Interfaces:
Serializable
,Comparable<CompilerOptions.IncrementalCheckMode>
,Constable
- Enclosing class:
CompilerOptions
public static enum CompilerOptions.IncrementalCheckMode
extends Enum<CompilerOptions.IncrementalCheckMode>
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionThe compiler should generate an output file that represents the type-only interface of the code being compiled.Normal modeThe compiler should run the same checks as used during type-only interface generation, but run them after typechecking to give better error messages. -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this class with the specified name.static CompilerOptions.IncrementalCheckMode[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
OFF
Normal mode -
GENERATE_IJS
The compiler should generate an output file that represents the type-only interface of the code being compiled. This is useful for incremental type checking. -
RUN_IJS_CHECKS_LATE
The compiler should run the same checks as used during type-only interface generation, but run them after typechecking to give better error messages. This only makes sense in --checks_only mode.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum class has no constant with the specified nameNullPointerException
- if the argument is null
-