| Enum Constant and Description |
|---|
ELECTABLE
A full fledged member of the replication group with an associated
replicated environment that can serve as both a Master and a Replica.
|
MONITOR
A node that passively listens for the results of elections, but does not
participate in them.
|
| Modifier and Type | Method and Description |
|---|---|
static NodeType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static NodeType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NodeType MONITOR
Monitorpublic static final NodeType ELECTABLE
public static NodeType[] values()
for (NodeType c : NodeType.values()) System.out.println(c);
public static NodeType 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 nullCopyright (c) 2004-2012 Oracle. All rights reserved.