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