public static enum DocumentStore.Collection extends Enum<DocumentStore.Collection>
| Enum Constant and Description |
|---|
CLUSTER_NODES
The 'clusterNodes' collection contains the list of currently running
cluster nodes.
|
NODES
The 'nodes' collection.
|
| Modifier and Type | Method and Description |
|---|---|
String |
toString() |
static DocumentStore.Collection |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DocumentStore.Collection[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DocumentStore.Collection NODES
Key: the path, value: the node data (possibly multiple revisions)
Old revisions are removed after some time, either by the process that removed or updated the node, lazily when reading, or in a background process.
public static final DocumentStore.Collection CLUSTER_NODES
public static DocumentStore.Collection[] values()
for (DocumentStore.Collection c : DocumentStore.Collection.values()) System.out.println(c);
public static DocumentStore.Collection 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 nullpublic String toString()
toString in class Enum<DocumentStore.Collection>Copyright © 2012-2013 The Apache Software Foundation. All Rights Reserved.