public enum AntiEntropyResponse extends Enum<AntiEntropyResponse>
| Enum Constant and Description |
|---|
FAILED
Signifies a unexpected failure during anti-entropy message processing.
|
IGNORED
Signifies a ignored anti-entropy message, potentially due to the receiver operating under high load.
|
PROCESSED
Signifies a successfully processed anti-entropy message.
|
| Modifier and Type | Method and Description |
|---|---|
static AntiEntropyResponse |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AntiEntropyResponse[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AntiEntropyResponse PROCESSED
public static final AntiEntropyResponse FAILED
public static final AntiEntropyResponse IGNORED
public static AntiEntropyResponse[] values()
for (AntiEntropyResponse c : AntiEntropyResponse.values()) System.out.println(c);
public static AntiEntropyResponse 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 © 2016. All rights reserved.