Package com.google.javascript.jscomp
Enum CompilerOptions.InstrumentOption
- java.lang.Object
-
- java.lang.Enum<CompilerOptions.InstrumentOption>
-
- com.google.javascript.jscomp.CompilerOptions.InstrumentOption
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<CompilerOptions.InstrumentOption>
- Enclosing class:
- CompilerOptions
public static enum CompilerOptions.InstrumentOption extends java.lang.Enum<CompilerOptions.InstrumentOption>
An option to determine what level of code instrumentation is performed, if any
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BRANCH_ONLY
LINE_ONLY
NONE
PRODUCTION
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static CompilerOptions.InstrumentOption
fromString(java.lang.String value)
static CompilerOptions.InstrumentOption
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static CompilerOptions.InstrumentOption[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NONE
public static final CompilerOptions.InstrumentOption NONE
-
LINE_ONLY
public static final CompilerOptions.InstrumentOption LINE_ONLY
-
BRANCH_ONLY
public static final CompilerOptions.InstrumentOption BRANCH_ONLY
-
PRODUCTION
public static final CompilerOptions.InstrumentOption PRODUCTION
-
-
Method Detail
-
values
public static CompilerOptions.InstrumentOption[] 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.InstrumentOption c : CompilerOptions.InstrumentOption.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.InstrumentOption 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 namejava.lang.NullPointerException
- if the argument is null
-
fromString
@Nullable public static CompilerOptions.InstrumentOption fromString(java.lang.String value)
-
-