public static enum QuorumPeer.SyncMode extends Enum<QuorumPeer.SyncMode>
Modifier and Type | Method and Description |
---|---|
static QuorumPeer.SyncMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static QuorumPeer.SyncMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final QuorumPeer.SyncMode NONE
public static final QuorumPeer.SyncMode DIFF
public static final QuorumPeer.SyncMode SNAP
public static final QuorumPeer.SyncMode TRUNC
public static QuorumPeer.SyncMode[] values()
for (QuorumPeer.SyncMode c : QuorumPeer.SyncMode.values()) System.out.println(c);
public static QuorumPeer.SyncMode 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.