public static enum Execution.State extends Enum<Execution.State> implements com.google.protobuf.ProtocolMessageEnum
Describes the current state of the execution. More states might be added in the future.Protobuf enum
google.cloud.workflows.executions.v1.Execution.State| Enum Constant and Description |
|---|
ACTIVE
The execution is in progress.
|
CANCELLED
The execution was stopped intentionally.
|
FAILED
The execution failed with an error.
|
QUEUED
Request has been placed in the backlog for processing at a later time.
|
STATE_UNSPECIFIED
Invalid state.
|
SUCCEEDED
The execution finished successfully.
|
UNAVAILABLE
Execution data is unavailable.
|
UNRECOGNIZED |
| Modifier and Type | Field and Description |
|---|---|
static int |
ACTIVE_VALUE
The execution is in progress.
|
static int |
CANCELLED_VALUE
The execution was stopped intentionally.
|
static int |
FAILED_VALUE
The execution failed with an error.
|
static int |
QUEUED_VALUE
Request has been placed in the backlog for processing at a later time.
|
static int |
STATE_UNSPECIFIED_VALUE
Invalid state.
|
static int |
SUCCEEDED_VALUE
The execution finished successfully.
|
static int |
UNAVAILABLE_VALUE
Execution data is unavailable.
|
| Modifier and Type | Method and Description |
|---|---|
static Execution.State |
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<Execution.State> |
internalGetValueMap() |
static Execution.State |
valueOf(com.google.protobuf.Descriptors.EnumValueDescriptor desc) |
static Execution.State |
valueOf(int value)
Deprecated.
Use
forNumber(int) instead. |
static Execution.State |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Execution.State[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Execution.State STATE_UNSPECIFIED
Invalid state.
STATE_UNSPECIFIED = 0;public static final Execution.State ACTIVE
The execution is in progress.
ACTIVE = 1;public static final Execution.State SUCCEEDED
The execution finished successfully.
SUCCEEDED = 2;public static final Execution.State FAILED
The execution failed with an error.
FAILED = 3;public static final Execution.State CANCELLED
The execution was stopped intentionally.
CANCELLED = 4;public static final Execution.State UNAVAILABLE
Execution data is unavailable. See the `state_error` field.
UNAVAILABLE = 5;public static final Execution.State QUEUED
Request has been placed in the backlog for processing at a later time.
QUEUED = 6;public static final Execution.State UNRECOGNIZED
public static final int STATE_UNSPECIFIED_VALUE
Invalid state.
STATE_UNSPECIFIED = 0;public static final int ACTIVE_VALUE
The execution is in progress.
ACTIVE = 1;public static final int SUCCEEDED_VALUE
The execution finished successfully.
SUCCEEDED = 2;public static final int FAILED_VALUE
The execution failed with an error.
FAILED = 3;public static final int CANCELLED_VALUE
The execution was stopped intentionally.
CANCELLED = 4;public static final int UNAVAILABLE_VALUE
Execution data is unavailable. See the `state_error` field.
UNAVAILABLE = 5;public static final int QUEUED_VALUE
Request has been placed in the backlog for processing at a later time.
QUEUED = 6;public static Execution.State[] values()
for (Execution.State c : Execution.State.values()) System.out.println(c);
public static Execution.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 nullpublic final int getNumber()
getNumber in interface com.google.protobuf.Internal.EnumLitegetNumber in interface com.google.protobuf.ProtocolMessageEnum@Deprecated public static Execution.State valueOf(int value)
forNumber(int) instead.value - The numeric wire value of the corresponding enum entry.public static Execution.State forNumber(int value)
value - The numeric wire value of the corresponding enum entry.public static com.google.protobuf.Internal.EnumLiteMap<Execution.State> 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 Execution.State valueOf(com.google.protobuf.Descriptors.EnumValueDescriptor desc)
Copyright © 2024 Google LLC. All rights reserved.