public static enum Schema.Mode extends java.lang.Enum<Schema.Mode>
| Enum Constant and Description |
|---|
Default
Uses the system default
|
Development
Properties, vertex labels and edge labels are created automatically when they are first used.
|
Production
Properties, vertex labels and edge labels must be defined before use.
|
| Modifier and Type | Method and Description |
|---|---|
static Schema.Mode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Schema.Mode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Schema.Mode Development
public static final Schema.Mode Production
public static final Schema.Mode Default
public static Schema.Mode[] values()
for (Schema.Mode c : Schema.Mode.values()) System.out.println(c);
public static Schema.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 null