public static enum LoginMethod.Type extends java.lang.Enum<LoginMethod.Type>
| Enum Constant | Description |
|---|---|
ANONYMOUS |
Logs in to Gluon CloudLink as an anonymous user.
|
FACEBOOK |
Logs in to Gluon CloudLink using Facebook.
|
GITHUB |
Logs in to Gluon CloudLink using GitHub.
|
GOOGLE_PLUS |
Logs in to Gluon CloudLink using Google+.
|
PASSWORD |
Logs in to Gluon CloudLink using a custom username and password combination.
|
TWITTER |
Logs in to Gluon CloudLink using Twitter.
|
| Modifier and Type | Method | Description |
|---|---|---|
static LoginMethod.Type |
valueOf(java.lang.String name) |
Returns the enum constant of this type with the specified name.
|
static LoginMethod.Type[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LoginMethod.Type ANONYMOUS
public static final LoginMethod.Type FACEBOOK
public static final LoginMethod.Type GITHUB
public static final LoginMethod.Type GOOGLE_PLUS
public static final LoginMethod.Type PASSWORD
public static final LoginMethod.Type TWITTER
public static LoginMethod.Type[] values()
for (LoginMethod.Type c : LoginMethod.Type.values()) System.out.println(c);
public static LoginMethod.Type 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