public static enum CompilerOptions.Environment extends java.lang.Enum<CompilerOptions.Environment>
| Enum Constant and Description |
|---|
BROWSER
Hand crafted externs that have traditionally been the default externs.
|
CUSTOM
Only language externs are loaded.
|
| Modifier and Type | Method and Description |
|---|---|
static CompilerOptions.Environment |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CompilerOptions.Environment[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CompilerOptions.Environment BROWSER
public static final CompilerOptions.Environment CUSTOM
public static CompilerOptions.Environment[] values()
for (CompilerOptions.Environment c : CompilerOptions.Environment.values()) System.out.println(c);
public static CompilerOptions.Environment 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 nullCopyright © 2009-2019 Google. All Rights Reserved.