public static enum IRecordStarvationStrategy.ExpectedBehaviour extends java.lang.Enum<IRecordStarvationStrategy.ExpectedBehaviour>
Enum Constant and Description |
---|
ABORT
Stop consuming record (aka break the consume loop)
|
RETRY
Try consuming again (aka run round of consume loop)
|
Modifier and Type | Method and Description |
---|---|
static IRecordStarvationStrategy.ExpectedBehaviour |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static IRecordStarvationStrategy.ExpectedBehaviour[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IRecordStarvationStrategy.ExpectedBehaviour RETRY
public static final IRecordStarvationStrategy.ExpectedBehaviour ABORT
public static IRecordStarvationStrategy.ExpectedBehaviour[] values()
for (IRecordStarvationStrategy.ExpectedBehaviour c : IRecordStarvationStrategy.ExpectedBehaviour.values()) System.out.println(c);
public static IRecordStarvationStrategy.ExpectedBehaviour 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 nullCopyright © 2023. All Rights Reserved.