public static enum EventTransformation.State extends Enum<EventTransformation.State>
| Enum Constant and Description |
|---|
ACTIVE
A transformation is in ACTIVE state when it is still open to accept new transformation actions.
|
APPLIED
A transformation is in APPLIED state when all the transformation actions registered in it have been applied
to the event store.
|
APPLYING
A transformation is in APPLYING state when the process to apply the transformation actions against the event
store is in progress.
|
CANCELLED
A transformation is in CANCELLED state when it has been discarded before to be applied.
|
| Modifier and Type | Method and Description |
|---|---|
static EventTransformation.State |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EventTransformation.State[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EventTransformation.State ACTIVE
public static final EventTransformation.State APPLYING
public static final EventTransformation.State APPLIED
public static final EventTransformation.State CANCELLED
public static EventTransformation.State[] values()
for (EventTransformation.State c : EventTransformation.State.values()) System.out.println(c);
public static EventTransformation.State 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 © 2020–2023 AxonIQ BV. All rights reserved.