atavism.server.objects
Enum RemoteAccountConnector.AccountLoginStatus
java.lang.Object
java.lang.Enum<RemoteAccountConnector.AccountLoginStatus>
atavism.server.objects.RemoteAccountConnector.AccountLoginStatus
- All Implemented Interfaces:
- java.io.Serializable, java.lang.Comparable<RemoteAccountConnector.AccountLoginStatus>
- Enclosing class:
- RemoteAccountConnector
public static enum RemoteAccountConnector.AccountLoginStatus
- extends java.lang.Enum<RemoteAccountConnector.AccountLoginStatus>
Methods inherited from class java.lang.Enum |
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
getClass, notify, notifyAll, wait, wait, wait |
InvalidPassword
public static final RemoteAccountConnector.AccountLoginStatus InvalidPassword
Success
public static final RemoteAccountConnector.AccountLoginStatus Success
AlreadyLoggedIn
public static final RemoteAccountConnector.AccountLoginStatus AlreadyLoggedIn
ServerError
public static final RemoteAccountConnector.AccountLoginStatus ServerError
NoAccess
public static final RemoteAccountConnector.AccountLoginStatus NoAccess
Banned
public static final RemoteAccountConnector.AccountLoginStatus Banned
UsernameUsed
public static final RemoteAccountConnector.AccountLoginStatus UsernameUsed
EmailUsed
public static final RemoteAccountConnector.AccountLoginStatus EmailUsed
DatabaseError
public static final RemoteAccountConnector.AccountLoginStatus DatabaseError
SubscriptionExpired
public static final RemoteAccountConnector.AccountLoginStatus SubscriptionExpired
values
public static RemoteAccountConnector.AccountLoginStatus[] 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 (RemoteAccountConnector.AccountLoginStatus c : RemoteAccountConnector.AccountLoginStatus.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they are declared
valueOf
public static RemoteAccountConnector.AccountLoginStatus 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 name
java.lang.NullPointerException
- if the argument is null
getValue
public int getValue()