java.io.Serializable, java.lang.Comparable<CharCreationLibrary.LoginResult>public static enum CharCreationLibrary.LoginResult extends java.lang.Enum<CharCreationLibrary.LoginResult>
| Enum Constant | Description | 
|---|---|
| INPUT_REQUIRED | User input required before proceeding | 
| NO_LOGIN | Nothing happened, try again | 
| NORMAL_LOGIN | Login completed, proceed | 
| Modifier and Type | Method | Description | 
|---|---|---|
| static CharCreationLibrary.LoginResult | valueOf(java.lang.String name) | Returns the enum constant of this type with the specified name. | 
| static CharCreationLibrary.LoginResult[] | values() | Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final CharCreationLibrary.LoginResult NO_LOGIN
public static final CharCreationLibrary.LoginResult NORMAL_LOGIN
public static final CharCreationLibrary.LoginResult INPUT_REQUIRED
public static CharCreationLibrary.LoginResult[] values()
for (CharCreationLibrary.LoginResult c : CharCreationLibrary.LoginResult.values()) System.out.println(c);
public static CharCreationLibrary.LoginResult valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null