public static enum QuorumPeer.ServerState extends Enum<QuorumPeer.ServerState>
Enum Constant and Description |
---|
FOLLOWING |
LEADING |
LOOKING |
OBSERVING |
Modifier and Type | Method and Description |
---|---|
static QuorumPeer.ServerState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static QuorumPeer.ServerState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final QuorumPeer.ServerState LOOKING
public static final QuorumPeer.ServerState FOLLOWING
public static final QuorumPeer.ServerState LEADING
public static final QuorumPeer.ServerState OBSERVING
public static QuorumPeer.ServerState[] values()
for (QuorumPeer.ServerState c : QuorumPeer.ServerState.values()) System.out.println(c);
public static QuorumPeer.ServerState 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 © 2008–2020 The Apache Software Foundation. All rights reserved.