Enum Class ExportNotification.State
- All Implemented Interfaces:
com.google.protobuf.Internal.EnumLite
,com.google.protobuf.ProtocolMessageEnum
,Serializable
,Comparable<ExportNotification.State>
,java.lang.constant.Constable
- Enclosing class:
- ExportNotification
public static enum ExportNotification.State
extends Enum<ExportNotification.State>
implements com.google.protobuf.ProtocolMessageEnum
Protobuf enum
io.deephaven.proto.backplane.grpc.ExportNotification.State
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionCANCELLED: The user cancelled the item before it exported.Dependency was cancelled, causing a cascading cancel that applies to this export.One of this item's dependencies had an internal error before it exported.One of this item's dependencies was already released or never submitted within the out-of-order window.Dependency was already released, causing a cascading failure that applies to this export.This item was successfully exported and is currently being retained.This item had a specific error.This item has pending dependencies.This item is a client-supplied dependency with no guarantee on timing to EXPORT state.This item is eligible for resolution and has been submitted to the executor.This item was successfully released.This item is now executing.This item is a dependency, but hasn't been registered yet. -
Field Summary
Modifier and TypeFieldDescriptionstatic final int
CANCELLED: The user cancelled the item before it exported.static final int
Dependency was cancelled, causing a cascading cancel that applies to this export.static final int
One of this item's dependencies had an internal error before it exported.static final int
One of this item's dependencies was already released or never submitted within the out-of-order window.static final int
Dependency was already released, causing a cascading failure that applies to this export.static final int
This item was successfully exported and is currently being retained.static final int
This item had a specific error.static final int
This item has pending dependencies.static final int
This item is a client-supplied dependency with no guarantee on timing to EXPORT state.static final int
This item is eligible for resolution and has been submitted to the executor.static final int
This item was successfully released.static final int
This item is now executing.static final int
This item is a dependency, but hasn't been registered yet. -
Method Summary
Modifier and TypeMethodDescriptionstatic ExportNotification.State
forNumber
(int value) static final com.google.protobuf.Descriptors.EnumDescriptor
final com.google.protobuf.Descriptors.EnumDescriptor
final int
final com.google.protobuf.Descriptors.EnumValueDescriptor
static com.google.protobuf.Internal.EnumLiteMap<ExportNotification.State>
static ExportNotification.State
valueOf
(int value) Deprecated.static ExportNotification.State
valueOf
(com.google.protobuf.Descriptors.EnumValueDescriptor desc) Returns the enum constant of this class with the specified name.static ExportNotification.State
Returns the enum constant of this class with the specified name.static ExportNotification.State[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
UNKNOWN
This item is a dependency, but hasn't been registered yet.
UNKNOWN = 0;
-
PENDING
This item has pending dependencies.
PENDING = 1;
-
PUBLISHING
This item is a client-supplied dependency with no guarantee on timing to EXPORT state.
PUBLISHING = 2;
-
QUEUED
This item is eligible for resolution and has been submitted to the executor.
QUEUED = 3;
-
RUNNING
This item is now executing.
RUNNING = 4;
-
EXPORTED
This item was successfully exported and is currently being retained.
EXPORTED = 5;
-
RELEASED
This item was successfully released.
RELEASED = 6;
-
CANCELLED
CANCELLED: The user cancelled the item before it exported.
CANCELLED = 7;
-
FAILED
This item had a specific error.
FAILED = 8;
-
DEPENDENCY_FAILED
One of this item's dependencies had an internal error before it exported.
DEPENDENCY_FAILED = 9;
-
DEPENDENCY_NEVER_FOUND
One of this item's dependencies was already released or never submitted within the out-of-order window.
DEPENDENCY_NEVER_FOUND = 10;
-
DEPENDENCY_CANCELLED
Dependency was cancelled, causing a cascading cancel that applies to this export.
DEPENDENCY_CANCELLED = 11;
-
DEPENDENCY_RELEASED
Dependency was already released, causing a cascading failure that applies to this export.
DEPENDENCY_RELEASED = 12;
-
UNRECOGNIZED
-
-
Field Details
-
UNKNOWN_VALUE
public static final int UNKNOWN_VALUEThis item is a dependency, but hasn't been registered yet.
UNKNOWN = 0;
- See Also:
-
PENDING_VALUE
public static final int PENDING_VALUEThis item has pending dependencies.
PENDING = 1;
- See Also:
-
PUBLISHING_VALUE
public static final int PUBLISHING_VALUEThis item is a client-supplied dependency with no guarantee on timing to EXPORT state.
PUBLISHING = 2;
- See Also:
-
QUEUED_VALUE
public static final int QUEUED_VALUEThis item is eligible for resolution and has been submitted to the executor.
QUEUED = 3;
- See Also:
-
RUNNING_VALUE
public static final int RUNNING_VALUEThis item is now executing.
RUNNING = 4;
- See Also:
-
EXPORTED_VALUE
public static final int EXPORTED_VALUEThis item was successfully exported and is currently being retained.
EXPORTED = 5;
- See Also:
-
RELEASED_VALUE
public static final int RELEASED_VALUEThis item was successfully released.
RELEASED = 6;
- See Also:
-
CANCELLED_VALUE
public static final int CANCELLED_VALUECANCELLED: The user cancelled the item before it exported.
CANCELLED = 7;
- See Also:
-
FAILED_VALUE
public static final int FAILED_VALUEThis item had a specific error.
FAILED = 8;
- See Also:
-
DEPENDENCY_FAILED_VALUE
public static final int DEPENDENCY_FAILED_VALUEOne of this item's dependencies had an internal error before it exported.
DEPENDENCY_FAILED = 9;
- See Also:
-
DEPENDENCY_NEVER_FOUND_VALUE
public static final int DEPENDENCY_NEVER_FOUND_VALUEOne of this item's dependencies was already released or never submitted within the out-of-order window.
DEPENDENCY_NEVER_FOUND = 10;
- See Also:
-
DEPENDENCY_CANCELLED_VALUE
public static final int DEPENDENCY_CANCELLED_VALUEDependency was cancelled, causing a cascading cancel that applies to this export.
DEPENDENCY_CANCELLED = 11;
- See Also:
-
DEPENDENCY_RELEASED_VALUE
public static final int DEPENDENCY_RELEASED_VALUEDependency was already released, causing a cascading failure that applies to this export.
DEPENDENCY_RELEASED = 12;
- See Also:
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum class has no constant with the specified nameNullPointerException
- if the argument is null
-
getNumber
public final int getNumber()- Specified by:
getNumber
in interfacecom.google.protobuf.Internal.EnumLite
- Specified by:
getNumber
in interfacecom.google.protobuf.ProtocolMessageEnum
-
valueOf
Deprecated.Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
value
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum class has no constant with the specified nameNullPointerException
- if the argument is null
-
forNumber
- Parameters:
value
- The numeric wire value of the corresponding enum entry.- Returns:
- The enum associated with the given numeric wire value.
-
internalGetValueMap
public static com.google.protobuf.Internal.EnumLiteMap<ExportNotification.State> internalGetValueMap() -
getValueDescriptor
public final com.google.protobuf.Descriptors.EnumValueDescriptor getValueDescriptor()- Specified by:
getValueDescriptor
in interfacecom.google.protobuf.ProtocolMessageEnum
-
getDescriptorForType
public final com.google.protobuf.Descriptors.EnumDescriptor getDescriptorForType()- Specified by:
getDescriptorForType
in interfacecom.google.protobuf.ProtocolMessageEnum
-
getDescriptor
public static final com.google.protobuf.Descriptors.EnumDescriptor getDescriptor() -
valueOf
public static ExportNotification.State valueOf(com.google.protobuf.Descriptors.EnumValueDescriptor desc) Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
desc
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum class has no constant with the specified nameNullPointerException
- if the argument is null
-