Package org.dreambot.api.methods.login
Enum LoginStage
- java.lang.Object
-
- java.lang.Enum<LoginStage>
-
- org.dreambot.api.methods.login.LoginStage
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<LoginStage>
public enum LoginStage extends java.lang.Enum<LoginStage>
Created by Nezz on 2/20/2018.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description AUTH
DISABLED
DISCONNECTED
ENTER_INFO
FORGOTTEN_PASSWORD
INVALID_INFORMATION
LAUNCHER
LOCKED
LOGIN_SCREEN
LOGIN_SCREEN_PLAY_NOW
MUST_ACCEPT_TOS
PROCESSING
SOMETHING1
TOS_AGREEMENT
UPDATE_DOB
WORLD_SCREEN
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static LoginStage
getStage(int index)
static LoginStage
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static LoginStage[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
LOGIN_SCREEN
public static final LoginStage LOGIN_SCREEN
-
SOMETHING1
public static final LoginStage SOMETHING1
-
ENTER_INFO
public static final LoginStage ENTER_INFO
-
INVALID_INFORMATION
public static final LoginStage INVALID_INFORMATION
-
AUTH
public static final LoginStage AUTH
-
FORGOTTEN_PASSWORD
public static final LoginStage FORGOTTEN_PASSWORD
-
UPDATE_DOB
public static final LoginStage UPDATE_DOB
-
WORLD_SCREEN
public static final LoginStage WORLD_SCREEN
-
PROCESSING
public static final LoginStage PROCESSING
-
LOGIN_SCREEN_PLAY_NOW
public static final LoginStage LOGIN_SCREEN_PLAY_NOW
-
DISABLED
public static final LoginStage DISABLED
-
LOCKED
public static final LoginStage LOCKED
-
MUST_ACCEPT_TOS
public static final LoginStage MUST_ACCEPT_TOS
-
DISCONNECTED
public static final LoginStage DISCONNECTED
-
TOS_AGREEMENT
public static final LoginStage TOS_AGREEMENT
-
LAUNCHER
public static final LoginStage LAUNCHER
-
-
Method Detail
-
values
public static LoginStage[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (LoginStage c : LoginStage.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static LoginStage valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
getStage
public static LoginStage getStage(int index)
-
-