public static enum PgqlColumnDescriptor.Type extends java.lang.Enum<PgqlColumnDescriptor.Type>
| Enum Constant and Description |
|---|
EDGE
The result column is an edge.
|
VALUE
The result column is a property value.
|
VERTEX
The result column is a vertex.
|
| Modifier and Type | Method and Description |
|---|---|
static PgqlColumnDescriptor.Type |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PgqlColumnDescriptor.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PgqlColumnDescriptor.Type EDGE
public static final PgqlColumnDescriptor.Type VALUE
public static final PgqlColumnDescriptor.Type VERTEX
public static PgqlColumnDescriptor.Type 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 static PgqlColumnDescriptor.Type[] values()
for (PgqlColumnDescriptor.Type c : PgqlColumnDescriptor.Type.values()) System.out.println(c);