public enum ReplAck extends Enum<ReplAck>
| Enum Constant and Description |
|---|
DUMP_ACKNOWLEDGEMENT |
EVENTS_DUMP |
FAILOVER_READY_MARKER |
LOAD_ACKNOWLEDGEMENT |
LOAD_METADATA |
NON_RECOVERABLE_MARKER |
| Modifier and Type | Method and Description |
|---|---|
String |
toString() |
static ReplAck |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ReplAck[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ReplAck DUMP_ACKNOWLEDGEMENT
public static final ReplAck EVENTS_DUMP
public static final ReplAck LOAD_ACKNOWLEDGEMENT
public static final ReplAck NON_RECOVERABLE_MARKER
public static final ReplAck LOAD_METADATA
public static final ReplAck FAILOVER_READY_MARKER
public static ReplAck[] values()
for (ReplAck c : ReplAck.values()) System.out.println(c);
public static ReplAck 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 © 2024 The Apache Software Foundation. All rights reserved.