public static enum Constants.LoginType extends java.lang.Enum<Constants.LoginType>
Enum Constant and Description |
---|
HMAC_TOKEN_BASED_AUTH
Hmac Token Based SPİDR/KL authentication
|
NORMAL
Regular SPiDR/KL MobileSDK
|
REGULAR_ANONYMOUS
Anonymous SPiDR/KL MobileSDK
|
TOKEN_BASED_ANONYMOUS
Time-Limited Token Based Anonymous SPiDR/KL MobileSDK
|
Modifier and Type | Method and Description |
---|---|
static Constants.LoginType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Constants.LoginType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Constants.LoginType NORMAL
public static final Constants.LoginType REGULAR_ANONYMOUS
public static final Constants.LoginType TOKEN_BASED_ANONYMOUS
public static final Constants.LoginType HMAC_TOKEN_BASED_AUTH
public static Constants.LoginType[] values()
for (Constants.LoginType c : Constants.LoginType.values()) System.out.println(c);
public static Constants.LoginType 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