public enum DatabaseWriterType extends Enum<DatabaseWriterType>
DatabaseWriter.| Enum Constant and Description |
|---|
BATCH |
DEFAULT |
SINGLE_THREADED |
| Modifier and Type | Method and Description |
|---|---|
static DatabaseWriterType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DatabaseWriterType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DatabaseWriterType DEFAULT
public static final DatabaseWriterType SINGLE_THREADED
public static final DatabaseWriterType BATCH
public static DatabaseWriterType[] values()
for (DatabaseWriterType c : DatabaseWriterType.values()) System.out.println(c);
public static DatabaseWriterType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2013–2015 Graph Aware Limited. All rights reserved.