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

public static enum ClientTableState.ResolutionState extends Enum<ClientTableState.ResolutionState>
  • Enum Constant Details

    • UNRESOLVED

      public static final ClientTableState.ResolutionState 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

      public static final ClientTableState.ResolutionState RESOLVED
      Table exists on both client and server, but isn't yet ready to be used - no definition has been received.
    • RUNNING

      public static final ClientTableState.ResolutionState 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

      public static final ClientTableState.ResolutionState RELEASED
      The table no longer exists on the server, and will not be recreated. This is a terminal state.
    • FAILED

      public static final ClientTableState.ResolutionState 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

      public static ClientTableState.ResolutionState[] 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

      public static ClientTableState.ResolutionState valueOf(String name)
      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 name
      NullPointerException - if the argument is null