Enum Class CompilerOptions.LanguageMode

java.lang.Object
java.lang.Enum<CompilerOptions.LanguageMode>
com.google.javascript.jscomp.CompilerOptions.LanguageMode
All Implemented Interfaces:
Serializable, Comparable<CompilerOptions.LanguageMode>, Constable
Enclosing class:
CompilerOptions

public static enum CompilerOptions.LanguageMode extends Enum<CompilerOptions.LanguageMode>
A language mode applies to the whole compilation job. As a result, the compiler does not support mixed strict and non-strict in the same compilation job. Therefore, the 'use strict' directive is ignored when the language mode is not strict.
  • Enum Constant Details Link icon

  • Field Details Link icon

  • Method Details Link icon

    • values Link icon

      public static CompilerOptions.LanguageMode[] 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 Link icon

      public static CompilerOptions.LanguageMode 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
    • validCommandLineNames Link icon

      public static List<String> validCommandLineNames()
      Returns a list of valid names used to select a `LanguageMode` on the command line.
    • fromString Link icon

      public static @Nullable CompilerOptions.LanguageMode fromString(String value)
    • toFeatureSet Link icon

      public FeatureSet toFeatureSet()