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