public enum MetaClassKind extends Enum<MetaClassKind> implements Enumerator
Enum Constant and Description |
---|
DEFINITION |
DIAGRAM |
SYMBOL |
Modifier and Type | Method and Description |
---|---|
String |
getLiteral() |
String |
getName() |
int |
getValue() |
static MetaClassKind |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MetaClassKind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MetaClassKind DIAGRAM
public static final MetaClassKind SYMBOL
public static final MetaClassKind DEFINITION
public static MetaClassKind[] values()
for (MetaClassKind c : MetaClassKind.values()) System.out.println(c);
public static MetaClassKind 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 getLiteral()
getLiteral
in interface Enumerator
public String getName()
getName
in interface Enumerator
public int getValue()
getValue
in interface Enumerator