Enum Class TableState.ResolutionState

java.lang.Object
java.lang.Enum<TableState.ResolutionState>
com.illumon.iris.web.shared.state.TableState.ResolutionState
All Implemented Interfaces:
Serializable, Comparable<TableState.ResolutionState>, Constable
Enclosing interface:
TableState

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

    • UNRESOLVED

      public static final TableState.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 TableState.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 TableState.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 TableState.ResolutionState RELEASED
      The table no longer exists on the server, and will not be recreated. This is a terminal state.
    • FAILED

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