public static enum PgxResource.Type extends java.lang.Enum<PgxResource.Type>
| Enum Constant and Description |
|---|
API |
CONTROL_FUTURE |
GRAPH |
SESSION |
STORAGE |
| Modifier and Type | Method and Description |
|---|---|
static PgxResource.Type |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PgxResource.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PgxResource.Type API
public static final PgxResource.Type CONTROL_FUTURE
public static final PgxResource.Type GRAPH
public static final PgxResource.Type SESSION
public static final PgxResource.Type STORAGE
public static PgxResource.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 PgxResource.Type[] values()
for (PgxResource.Type c : PgxResource.Type.values()) System.out.println(c);