public static enum VKSdk.LoginState extends java.lang.Enum<VKSdk.LoginState>
| Enum Constant and Description |
|---|
LoggedIn |
LoggedOut |
Pending |
Unknown |
| Modifier and Type | Method and Description |
|---|---|
static VKSdk.LoginState |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static VKSdk.LoginState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final VKSdk.LoginState Unknown
public static final VKSdk.LoginState LoggedOut
public static final VKSdk.LoginState Pending
public static final VKSdk.LoginState LoggedIn
public static VKSdk.LoginState[] values()
for (VKSdk.LoginState c : VKSdk.LoginState.values()) System.out.println(c);
public static VKSdk.LoginState 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