public static enum ConsistentRegionConfig.Trigger extends java.lang.Enum<ConsistentRegionConfig.Trigger>
Enum Constant and Description |
---|
OPERATOR_DRIVEN
Region is triggered by the start operator.
|
PERIODIC
Region is triggered periodically.
|
Modifier and Type | Method and Description |
---|---|
static ConsistentRegionConfig.Trigger |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ConsistentRegionConfig.Trigger[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ConsistentRegionConfig.Trigger OPERATOR_DRIVEN
public static final ConsistentRegionConfig.Trigger PERIODIC
public static ConsistentRegionConfig.Trigger[] values()
for (ConsistentRegionConfig.Trigger c : ConsistentRegionConfig.Trigger.values()) System.out.println(c);
public static ConsistentRegionConfig.Trigger 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