public enum TdbGraphRecordType extends java.lang.Enum<TdbGraphRecordType>
TdbGraphRecord
Enum Constant and Description |
---|
Edge
Indicates that the graph record represents an edge.
|
Invalid
Invalid or unspecified graph record type.
|
Vertex
Indicates that the graph record represents a vertex.
|
Modifier and Type | Method and Description |
---|---|
char |
getValue()
Return the graph record type identifier.
|
static TdbGraphRecordType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static TdbGraphRecordType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TdbGraphRecordType Invalid
public static final TdbGraphRecordType Edge
public static final TdbGraphRecordType Vertex
public static TdbGraphRecordType[] values()
for (TdbGraphRecordType c : TdbGraphRecordType.values()) System.out.println(c);
public static TdbGraphRecordType 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 char getValue()