public static enum FunctionConfig.ProcessingGuarantees extends Enum<FunctionConfig.ProcessingGuarantees>
| Enum Constant and Description |
|---|
ATLEAST_ONCE |
ATMOST_ONCE |
EFFECTIVELY_ONCE |
| Modifier and Type | Method and Description |
|---|---|
static FunctionConfig.ProcessingGuarantees |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FunctionConfig.ProcessingGuarantees[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FunctionConfig.ProcessingGuarantees ATLEAST_ONCE
public static final FunctionConfig.ProcessingGuarantees ATMOST_ONCE
public static final FunctionConfig.ProcessingGuarantees EFFECTIVELY_ONCE
public static FunctionConfig.ProcessingGuarantees[] values()
for (FunctionConfig.ProcessingGuarantees c : FunctionConfig.ProcessingGuarantees.values()) System.out.println(c);
public static FunctionConfig.ProcessingGuarantees 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 © 2017–2021 Apache Software Foundation. All rights reserved.