Package io.deephaven.web.client.state
Enum Class ClientTableState.ResolutionState
java.lang.Object
java.lang.Enum<ClientTableState.ResolutionState>
io.deephaven.web.client.state.ClientTableState.ResolutionState
- All Implemented Interfaces:
Serializable
,Comparable<ClientTableState.ResolutionState>
,java.lang.constant.Constable
- Enclosing class:
- ClientTableState
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionThe table failed to be created on the server and so cannot be used.The table no longer exists on the server, and will not be recreated.Table exists on both client and server, but isn't yet ready to be used - no definition has been received.Table exists on both the client and the server, and is able to be used.Table has been created on the client, but client does not yet have a handle ID referring to the table on the server -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this class with the specified name.static ClientTableState.ResolutionState[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
UNRESOLVED
Table has been created on the client, but client does not yet have a handle ID referring to the table on the server -
RESOLVED
Table exists on both client and server, but isn't yet ready to be used - no definition has been received. -
RUNNING
Table exists on both the client and the server, and is able to be used. This is sort-of-terminal, as it may change during a reconnect. -
RELEASED
The table no longer exists on the server, and will not be recreated. This is a terminal state. -
FAILED
The table failed to be created on the server and so cannot be used. This is sort-of-terminal, as it may change during a reconnect.
-
-
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
-