public enum VertexKind extends java.lang.Enum<VertexKind>
| Enum Constant and Description |
|---|
EATTRIBUTE |
ECLASS |
EOBJECT |
EPACKAGE |
EPACKAGE_BUNDLE |
EPACKAGE_REGISTRY |
EREFERENCE |
| Modifier and Type | Method and Description |
|---|---|
static VertexKind |
fromString(java.lang.String literal) |
java.lang.String |
toString() |
static VertexKind |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static VertexKind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final VertexKind EOBJECT
public static final VertexKind ECLASS
public static final VertexKind EATTRIBUTE
public static final VertexKind EREFERENCE
public static final VertexKind EPACKAGE
public static final VertexKind EPACKAGE_REGISTRY
public static final VertexKind EPACKAGE_BUNDLE
public static VertexKind[] values()
for (VertexKind c : VertexKind.values()) System.out.println(c);
public static VertexKind 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 nullpublic java.lang.String toString()
toString in class java.lang.Enum<VertexKind>public static VertexKind fromString(java.lang.String literal)