public static enum AspectType.ScopeEnum extends Enum<AspectType.ScopeEnum>
Modifier and Type | Method and Description |
---|---|
static AspectType.ScopeEnum |
fromValue(String text) |
String |
getValue() |
String |
toString() |
static AspectType.ScopeEnum |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AspectType.ScopeEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AspectType.ScopeEnum PUBLIC
public static final AspectType.ScopeEnum PRIVATE
public static AspectType.ScopeEnum[] values()
for (AspectType.ScopeEnum c : AspectType.ScopeEnum.values()) System.out.println(c);
public static AspectType.ScopeEnum 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 nullpublic String getValue()
public String toString()
toString
in class Enum<AspectType.ScopeEnum>
public static AspectType.ScopeEnum fromValue(String text)