Package org.rspeer.game.event
Enum LoginResponseEvent.Code
- java.lang.Object
-
- java.lang.Enum<LoginResponseEvent.Code>
-
- org.rspeer.game.event.LoginResponseEvent.Code
-
- All Implemented Interfaces:
Serializable
,Comparable<LoginResponseEvent.Code>
- Enclosing class:
- LoginResponseEvent
public static enum LoginResponseEvent.Code extends Enum<LoginResponseEvent.Code>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static LoginResponseEvent.Code
valueOf(int value)
Returns the enum constant of this type with the specified name.static LoginResponseEvent.Code
valueOf(String name)
Returns the enum constant of this type with the specified name.static LoginResponseEvent.Code[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CONNECTION_TIMED_OUT
public static final LoginResponseEvent.Code CONNECTION_TIMED_OUT
-
ERROR_CONNECTING
public static final LoginResponseEvent.Code ERROR_CONNECTING
-
NO_SERVER_RESPONSE
public static final LoginResponseEvent.Code NO_SERVER_RESPONSE
-
INVALID_CREDENTIALS
public static final LoginResponseEvent.Code INVALID_CREDENTIALS
-
ACCOUNT_DISABLED
public static final LoginResponseEvent.Code ACCOUNT_DISABLED
-
ACCOUNT_NOT_LOGGED_OUT
public static final LoginResponseEvent.Code ACCOUNT_NOT_LOGGED_OUT
-
RUNESCAPE_UPDATE
public static final LoginResponseEvent.Code RUNESCAPE_UPDATE
-
WORLD_FULL
public static final LoginResponseEvent.Code WORLD_FULL
-
LOGIN_SERVER_OFFLINE
public static final LoginResponseEvent.Code LOGIN_SERVER_OFFLINE
-
LOGIN_LIMIT
public static final LoginResponseEvent.Code LOGIN_LIMIT
-
BAD_SESSION_ID
public static final LoginResponseEvent.Code BAD_SESSION_ID
-
ACCOUNT_STOLEN
public static final LoginResponseEvent.Code ACCOUNT_STOLEN
-
MEMBERSHIP_REQUIRED
public static final LoginResponseEvent.Code MEMBERSHIP_REQUIRED
-
COULD_NOT_COMPLETE
public static final LoginResponseEvent.Code COULD_NOT_COMPLETE
-
SERVER_BEING_UPDATED
public static final LoginResponseEvent.Code SERVER_BEING_UPDATED
-
TOO_MANY_ATTEMPTS
public static final LoginResponseEvent.Code TOO_MANY_ATTEMPTS
-
MEMBERS_ONLY_AREA
public static final LoginResponseEvent.Code MEMBERS_ONLY_AREA
-
ACCOUNT_LOCKED
public static final LoginResponseEvent.Code ACCOUNT_LOCKED
-
WORLD_CLOSED_BETA
public static final LoginResponseEvent.Code WORLD_CLOSED_BETA
-
INVALID_LOGIN_SERVER
public static final LoginResponseEvent.Code INVALID_LOGIN_SERVER
-
MALFORMED_LOGIN_PACKET
public static final LoginResponseEvent.Code MALFORMED_LOGIN_PACKET
-
NO_SERVER_REPLY
public static final LoginResponseEvent.Code NO_SERVER_REPLY
-
ERROR_LOADING_PROFILE
public static final LoginResponseEvent.Code ERROR_LOADING_PROFILE
-
UNEXPECTED_SERVER_RESPONSE
public static final LoginResponseEvent.Code UNEXPECTED_SERVER_RESPONSE
-
COMPUTER_ADDRESS_BLOCKED
public static final LoginResponseEvent.Code COMPUTER_ADDRESS_BLOCKED
-
SERVICE_UNAVAILABLE
public static final LoginResponseEvent.Code SERVICE_UNAVAILABLE
-
NO_DISPLAY_NAME_SET
public static final LoginResponseEvent.Code NO_DISPLAY_NAME_SET
-
UNSUCCESSFUL_ACCOUNT_LOGIN_ATTEMPT
public static final LoginResponseEvent.Code UNSUCCESSFUL_ACCOUNT_LOGIN_ATTEMPT
-
ACCOUNT_INACCESSIBLE
public static final LoginResponseEvent.Code ACCOUNT_INACCESSIBLE
-
VOTE_REQUIRED
public static final LoginResponseEvent.Code VOTE_REQUIRED
-
ENTER_AUTH
public static final LoginResponseEvent.Code ENTER_AUTH
-
INCORRECT_AUTH_CODE
public static final LoginResponseEvent.Code INCORRECT_AUTH_CODE
-
FAILED_TO_LOGIN
public static final LoginResponseEvent.Code FAILED_TO_LOGIN
-
RUNESCAPE_UPDATE_2
public static final LoginResponseEvent.Code RUNESCAPE_UPDATE_2
-
-
Method Detail
-
values
public static LoginResponseEvent.Code[] 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 (LoginResponseEvent.Code c : LoginResponseEvent.Code.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static LoginResponseEvent.Code valueOf(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:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
valueOf
public static LoginResponseEvent.Code valueOf(int value)
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:
value
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
-