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