public static enum CompilerOptions.TracerMode extends java.lang.Enum<CompilerOptions.TracerMode>
| Enum Constant and Description |
|---|
ALL |
AST_SIZE |
OFF |
RAW_SIZE |
TIMING_ONLY |
| Modifier and Type | Method and Description |
|---|---|
boolean |
isOn() |
static CompilerOptions.TracerMode |
valueOf(java.lang.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(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 boolean isOn()
Copyright © 2009-2020 Google. All Rights Reserved.