public static enum ContainerProperties.EOSMode extends java.lang.Enum<ContainerProperties.EOSMode>
| Enum Constant and Description |
|---|
ALPHA
'transactional.id' fencing (0.11 - 2.4 brokers).
|
BETA
fetch-offset-request fencing (2.5+ brokers).
|
| Modifier and Type | Method and Description |
|---|---|
static ContainerProperties.EOSMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ContainerProperties.EOSMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ContainerProperties.EOSMode ALPHA
public static final ContainerProperties.EOSMode BETA
public static ContainerProperties.EOSMode[] values()
for (ContainerProperties.EOSMode c : ContainerProperties.EOSMode.values()) System.out.println(c);
public static ContainerProperties.EOSMode 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 null