public static enum CompilerOptions.TracerMode extends Enum<CompilerOptions.TracerMode>
Enum Constant and Description |
---|
ALL |
AST_SIZE |
OFF |
RAW_SIZE |
TIMING_ONLY |
Modifier and Type | Method and Description |
---|---|
static CompilerOptions.TracerMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CompilerOptions.TracerMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CompilerOptions.TracerMode ALL
public static final CompilerOptions.TracerMode RAW_SIZE
public static final CompilerOptions.TracerMode AST_SIZE
public static final CompilerOptions.TracerMode TIMING_ONLY
public static final CompilerOptions.TracerMode OFF
public static CompilerOptions.TracerMode[] values()
for (CompilerOptions.TracerMode c : CompilerOptions.TracerMode.values()) System.out.println(c);
public static CompilerOptions.TracerMode valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2009-2017 Google. All Rights Reserved.