public enum TransformationState extends Enum<TransformationState> implements com.google.protobuf.ProtocolMessageEnum
The state of the transformation.Protobuf enum
io.axoniq.axonserver.grpc.event.TransformationState| Enum Constant and Description |
|---|
ACTIVE
The transformation is opened, able to receive request to transform events, or to be applied or cancelled.
|
APPLIED
The transformation has been applied to the event store.
|
APPLYING
The transformation is in progress of applying its actions to the event store.
|
CANCELLED
The transformation has been cancelled.
|
UNRECOGNIZED |
| Modifier and Type | Field and Description |
|---|---|
static int |
ACTIVE_VALUE
The transformation is opened, able to receive request to transform events, or to be applied or cancelled.
|
static int |
APPLIED_VALUE
The transformation has been applied to the event store.
|
static int |
APPLYING_VALUE
The transformation is in progress of applying its actions to the event store.
|
static int |
CANCELLED_VALUE
The transformation has been cancelled.
|
| Modifier and Type | Method and Description |
|---|---|
static TransformationState |
forNumber(int value) |
static com.google.protobuf.Descriptors.EnumDescriptor |
getDescriptor() |
com.google.protobuf.Descriptors.EnumDescriptor |
getDescriptorForType() |
int |
getNumber() |
com.google.protobuf.Descriptors.EnumValueDescriptor |
getValueDescriptor() |
static com.google.protobuf.Internal.EnumLiteMap<TransformationState> |
internalGetValueMap() |
static TransformationState |
valueOf(com.google.protobuf.Descriptors.EnumValueDescriptor desc) |
static TransformationState |
valueOf(int value)
Deprecated.
Use
forNumber(int) instead. |
static TransformationState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TransformationState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TransformationState ACTIVE
The transformation is opened, able to receive request to transform events, or to be applied or cancelled.
ACTIVE = 0;public static final TransformationState CANCELLED
The transformation has been cancelled. This a final state.
CANCELLED = 1;public static final TransformationState APPLYING
The transformation is in progress of applying its actions to the event store.
APPLYING = 2;public static final TransformationState APPLIED
The transformation has been applied to the event store. This a final state.
APPLIED = 3;public static final TransformationState UNRECOGNIZED
public static final int ACTIVE_VALUE
The transformation is opened, able to receive request to transform events, or to be applied or cancelled.
ACTIVE = 0;public static final int CANCELLED_VALUE
The transformation has been cancelled. This a final state.
CANCELLED = 1;public static final int APPLYING_VALUE
The transformation is in progress of applying its actions to the event store.
APPLYING = 2;public static final int APPLIED_VALUE
The transformation has been applied to the event store. This a final state.
APPLIED = 3;public static TransformationState[] values()
for (TransformationState c : TransformationState.values()) System.out.println(c);
public static TransformationState 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 nullpublic final int getNumber()
getNumber in interface com.google.protobuf.Internal.EnumLitegetNumber in interface com.google.protobuf.ProtocolMessageEnum@Deprecated public static TransformationState valueOf(int value)
forNumber(int) instead.public static TransformationState forNumber(int value)
public static com.google.protobuf.Internal.EnumLiteMap<TransformationState> internalGetValueMap()
public final com.google.protobuf.Descriptors.EnumValueDescriptor getValueDescriptor()
getValueDescriptor in interface com.google.protobuf.ProtocolMessageEnumpublic final com.google.protobuf.Descriptors.EnumDescriptor getDescriptorForType()
getDescriptorForType in interface com.google.protobuf.ProtocolMessageEnumpublic static final com.google.protobuf.Descriptors.EnumDescriptor getDescriptor()
public static TransformationState valueOf(com.google.protobuf.Descriptors.EnumValueDescriptor desc)
Copyright © 2020–2023 AxonIQ BV. All rights reserved.