public enum DescriptionType extends java.lang.Enum<DescriptionType>
| Enum Constant and Description |
|---|
OPERATION |
TERM |
TEXT |
TYPE |
VARIABLE |
| Modifier and Type | Method and Description |
|---|---|
static DescriptionType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DescriptionType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DescriptionType TEXT
public static final DescriptionType TERM
public static final DescriptionType OPERATION
public static final DescriptionType TYPE
public static final DescriptionType VARIABLE
public static DescriptionType[] values()
for (DescriptionType c : DescriptionType.values()) System.out.println(c);
public static DescriptionType 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 null