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