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>
  • Enum Constant Details

    • OFF

      public static final CompilerOptions.IncrementalCheckMode OFF
      Normal mode
    • GENERATE_IJS

      public static final CompilerOptions.IncrementalCheckMode 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

      public static final CompilerOptions.IncrementalCheckMode 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

      public static CompilerOptions.IncrementalCheckMode[] 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

      public static CompilerOptions.IncrementalCheckMode valueOf(String name)
      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 name
      NullPointerException - if the argument is null