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