public static enum CompilerOptions.Reach extends Enum<CompilerOptions.Reach>
Enum Constant and Description |
---|
ALL |
LOCAL_ONLY |
NONE |
Modifier and Type | Method and Description |
---|---|
static CompilerOptions.Reach |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CompilerOptions.Reach[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CompilerOptions.Reach ALL
public static final CompilerOptions.Reach LOCAL_ONLY
public static final CompilerOptions.Reach NONE
public static CompilerOptions.Reach[] values()
for (CompilerOptions.Reach c : CompilerOptions.Reach.values()) System.out.println(c);
public static CompilerOptions.Reach 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.