public static enum CompilerOptions.InstrumentOption extends java.lang.Enum<CompilerOptions.InstrumentOption>
Enum Constant and Description |
---|
BRANCH_ONLY |
LINE_ONLY |
NONE |
PRODUCTION |
Modifier and Type | Method and 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.
|
public static final CompilerOptions.InstrumentOption NONE
public static final CompilerOptions.InstrumentOption LINE_ONLY
public static final CompilerOptions.InstrumentOption BRANCH_ONLY
public static final CompilerOptions.InstrumentOption PRODUCTION
public static CompilerOptions.InstrumentOption[] values()
for (CompilerOptions.InstrumentOption c : CompilerOptions.InstrumentOption.values()) System.out.println(c);
public static CompilerOptions.InstrumentOption valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic static CompilerOptions.InstrumentOption fromString(java.lang.String value)
Copyright © 2009-2020 Google. All Rights Reserved.