Enum Class AbstractTableSubscription.Status
java.lang.Object
java.lang.Enum<AbstractTableSubscription.Status>
io.deephaven.web.client.api.subscription.AbstractTableSubscription.Status
- All Implemented Interfaces:
Serializable
,Comparable<AbstractTableSubscription.Status>
,java.lang.constant.Constable
- Enclosing class:
- AbstractTableSubscription
protected static enum AbstractTableSubscription.Status
extends Enum<AbstractTableSubscription.Status>
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionSuccessfully created, not waiting for any messages to be accurate.Closed or otherwise stopped, cannot be used again.Waiting for an update to return from being active to being active again.Waiting for some prerequisite before we can use it for the first time.All prerequisites are met, waiting for the first snapshot to be returned. -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this class with the specified name.static AbstractTableSubscription.Status[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
STARTING
Waiting for some prerequisite before we can use it for the first time. -
SUBSCRIPTION_REQUESTED
All prerequisites are met, waiting for the first snapshot to be returned. -
ACTIVE
Successfully created, not waiting for any messages to be accurate. -
PENDING_UPDATE
Waiting for an update to return from being active to being active again. -
DONE
Closed or otherwise stopped, cannot be used again.
-
-
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
-