Enum Class LoginScreenState

java.lang.Object
java.lang.Enum<LoginScreenState>
com.epicbot.api.os.model.game.LoginScreenState
All Implemented Interfaces:
LoginScreenState, Serializable, Comparable<LoginScreenState>, Constable

public enum LoginScreenState extends Enum<LoginScreenState> implements LoginScreenState
  • Enum Constant Details

    • UNKNOWN

      public static final LoginScreenState UNKNOWN
      Unknown login state.
    • INITIAL

      public static final LoginScreenState INITIAL
      The client is at the initial login screen (new user or existing user screen).
    • LOGIN_SCREEN

      public static final LoginScreenState LOGIN_SCREEN
      The client is at the login screen and can enter an username and password.
    • INVALID_CREDENTIALS

      public static final LoginScreenState INVALID_CREDENTIALS
      The client is at the username and/or password is incorrect screen.
    • LOGIN_SCREEN_AUTHENTICATOR

      public static final LoginScreenState LOGIN_SCREEN_AUTHENTICATOR
      The client is at the enter 6-digit code authenticator screen.
    • LOGIN_SCREEN_FORGOT

      public static final LoginScreenState LOGIN_SCREEN_FORGOT
      The client is at the forgot password screen.
    • LOGIN_SCREEN_BANNED

      public static final LoginScreenState LOGIN_SCREEN_BANNED
      The client is at the banned screen.
    • LOGIN_SCREEN_DISCONNECT

      public static final LoginScreenState LOGIN_SCREEN_DISCONNECT
      The client is at the disconnected screen.
  • Method Details

    • values

      public static LoginScreenState[] 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 LoginScreenState 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
    • getState

      public int getState()
      Specified by:
      getState in interface LoginScreenState
    • of

      public static LoginScreenState of(int state)