public enum DatabaseType extends Enum<DatabaseType>
| Enum Constant and Description |
|---|
COLUMN
A wide column store is a type of NoSQL database.
|
DOCUMENT
A document database is a type of nonrelational database that is designed to store semistructured data as documents.
|
GRAPH
In computing, a graph database (GDB[1]) is a database that uses graph structures for semantic queries with nodes,
edges and properties to represent and store data.
|
KEY_VALUE
A key-value database, or key-value store, is a data storage paradigm designed for storing, retrieving,
and managing associative arrays, a data structure more commonly known
today as a dictionary or hash table.
|
SHARED
That is not a NoSQL type; it defines resources shared among the NoSQL types.
|
| Modifier and Type | Method and Description |
|---|---|
static DatabaseType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DatabaseType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DatabaseType DOCUMENT
public static final DatabaseType COLUMN
public static final DatabaseType KEY_VALUE
public static final DatabaseType GRAPH
public static final DatabaseType SHARED
public static DatabaseType[] values()
for (DatabaseType c : DatabaseType.values()) System.out.println(c);
public static DatabaseType 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 © 2017–2022 Eclipse Foundation. All rights reserved.