public static enum PgqlResultElement.Type extends java.lang.Enum<PgqlResultElement.Type>
Enum Constant and Description |
---|
BOOLEAN |
DATE |
DOUBLE |
EDGE |
EDGE_LABEL |
FLOAT |
INTEGER |
LONG |
POINT2D |
STRING |
TIME |
TIME_WITH_TIMEZONE |
TIMESTAMP |
TIMESTAMP_WITH_TIMEZONE |
VERTEX |
VERTEX_LABELS |
Modifier and Type | Method and Description |
---|---|
static PgqlResultElement.Type |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PgqlResultElement.Type[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared.
|
public static final PgqlResultElement.Type BOOLEAN
public static final PgqlResultElement.Type DATE
public static final PgqlResultElement.Type DOUBLE
public static final PgqlResultElement.Type EDGE
public static final PgqlResultElement.Type EDGE_LABEL
public static final PgqlResultElement.Type FLOAT
public static final PgqlResultElement.Type INTEGER
public static final PgqlResultElement.Type LONG
public static final PgqlResultElement.Type POINT2D
public static final PgqlResultElement.Type STRING
public static final PgqlResultElement.Type TIME
public static final PgqlResultElement.Type TIME_WITH_TIMEZONE
public static final PgqlResultElement.Type TIMESTAMP
public static final PgqlResultElement.Type TIMESTAMP_WITH_TIMEZONE
public static final PgqlResultElement.Type VERTEX
public static final PgqlResultElement.Type VERTEX_LABELS
public static PgqlResultElement.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 PgqlResultElement.Type[] values()
for (PgqlResultElement.Type c : PgqlResultElement.Type.values()) System.out.println(c);
Copyright © 2017 Oracle Corp. All Rights Reserved.