Enum Class GuiState

java.lang.Object
java.lang.Enum<GuiState>
com.realtime.crossfire.jxclient.guistate.GuiState
All Implemented Interfaces:
Serializable, Comparable<GuiState>, Constable

public enum GuiState extends Enum<GuiState>
Possible gui states.
  • Enum Constant Details

    • START

      public static final GuiState START
      Display the start screen.
    • METASERVER

      public static final GuiState METASERVER
      Display the server selection screen.
    • CONNECTING

      public static final GuiState CONNECTING
      Display the screen while a server connection is established.
    • CONNECTED

      public static final GuiState CONNECTED
      Display the main playing screen.
    • CONNECT_FAILED

      public static final GuiState CONNECT_FAILED
      Display a failed connection attempt.
  • Method Details

    • values

      public static GuiState[] 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 GuiState 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