Enum CompilerOptions.IncrementalCheckMode

    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
      GENERATE_IJS
      The compiler should generate an output file that represents the type-only interface of the code being compiled.
      OFF
      Normal mode
      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.
    • Method Summary

      All Methods Static Methods Concrete Methods 
      Modifier and Type Method 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.
      • Methods inherited from class java.lang.Enum

        clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
      • Methods inherited from class java.lang.Object

        getClass, notify, notifyAll, wait, wait, wait
    • Enum Constant Detail

      • 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 Detail

      • values

        public static CompilerOptions.IncrementalCheckMode[] values()
        Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
        for (CompilerOptions.IncrementalCheckMode c : CompilerOptions.IncrementalCheckMode.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static CompilerOptions.IncrementalCheckMode valueOf​(java.lang.String name)
        Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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:
        java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
        java.lang.NullPointerException - if the argument is null