public enum EventPublishingStep extends java.lang.Enum<EventPublishingStep>
| Enum Constant and Description |
|---|
ENRICHING |
NONE |
PARTITIONING |
PUBLISHING |
VALIDATING |
| Modifier and Type | Method and Description |
|---|---|
static EventPublishingStep |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EventPublishingStep[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EventPublishingStep NONE
public static final EventPublishingStep VALIDATING
public static final EventPublishingStep ENRICHING
public static final EventPublishingStep PARTITIONING
public static final EventPublishingStep PUBLISHING
public static EventPublishingStep[] values()
for (EventPublishingStep c : EventPublishingStep.values()) System.out.println(c);
public static EventPublishingStep 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