Package com.epicbot.api.os.model.game
Enum Class LoginScreenState
- All Implemented Interfaces:
LoginScreenState,Serializable,Comparable<LoginScreenState>,Constable
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionThe client is at the initial login screen (new user or existing user screen).The client is at the username and/or password is incorrect screen.The client is at the login screen and can enter an username and password.The client is at the enter 6-digit code authenticator screen.The client is at the banned screen.The client is at the disconnected screen.The client is at the forgot password screen.Unknown login state. -
Method Summary
Modifier and TypeMethodDescriptionintgetState()static LoginScreenStateof(int state) static LoginScreenStateReturns the enum constant of this class with the specified name.static LoginScreenState[]values()Returns an array containing the constants of this enum class, in the order they are declared.Methods inherited from class java.lang.Enum
clone, compareTo, describeConstable, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOfMethods inherited from interface com.epicbot.api.shared.model.game.LoginScreenState
is
-
Enum Constant Details
-
UNKNOWN
Unknown login state. -
INITIAL
The client is at the initial login screen (new user or existing user screen). -
LOGIN_SCREEN
The client is at the login screen and can enter an username and password. -
INVALID_CREDENTIALS
The client is at the username and/or password is incorrect screen. -
LOGIN_SCREEN_AUTHENTICATOR
The client is at the enter 6-digit code authenticator screen. -
LOGIN_SCREEN_FORGOT
The client is at the forgot password screen. -
LOGIN_SCREEN_BANNED
The client is at the banned screen. -
LOGIN_SCREEN_DISCONNECT
The client is at the disconnected screen.
-
-
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
-
getState
public int getState()- Specified by:
getStatein interfaceLoginScreenState
-
of
-