public static enum EngineSettings.Scope extends Enum<EngineSettings.Scope>
| Enum Constant and Description |
|---|
PACKAGE_PROTECTED |
PRIVATE |
PROTECTED |
PUBLIC |
| Modifier and Type | Method and Description |
|---|---|
static EngineSettings.Scope |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EngineSettings.Scope[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EngineSettings.Scope PUBLIC
public static final EngineSettings.Scope PROTECTED
public static final EngineSettings.Scope PACKAGE_PROTECTED
public static final EngineSettings.Scope PRIVATE
public static EngineSettings.Scope[] values()
for (EngineSettings.Scope c : EngineSettings.Scope.values()) System.out.println(c);
public static EngineSettings.Scope 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 © 2015 Atlassian. All rights reserved.