Serializable, Comparable<LoginResult.Status>public static enum LoginResult.Status extends Enum<LoginResult.Status>
| Modifier and Type | Method | Description |
|---|---|---|
static LoginResult.Status |
valueOf(String name) |
Returns the enum constant of this type with the specified name.
|
static LoginResult.Status[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LoginResult.Status SUCCESS
public static final LoginResult.Status NOT_FOUND
public static final LoginResult.Status INVALID
public static final LoginResult.Status INCORRECT
public static LoginResult.Status[] values()
for (LoginResult.Status c : LoginResult.Status.values()) System.out.println(c);
public static LoginResult.Status valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2018 Ajibot. All rights reserved.