public enum AuthorizationType extends java.lang.Enum<AuthorizationType>
| Enum Constant and Description |
|---|
APIKEY |
BASIC_AUTH |
DELETE |
OAUTH2 |
OPTIONS |
PATCH |
| Modifier and Type | Method and Description |
|---|---|
static AuthorizationType |
forValue(java.lang.String value) |
java.lang.String |
toValue() |
static AuthorizationType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AuthorizationType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AuthorizationType BASIC_AUTH
public static final AuthorizationType APIKEY
public static final AuthorizationType OAUTH2
public static final AuthorizationType PATCH
public static final AuthorizationType DELETE
public static final AuthorizationType OPTIONS
public static AuthorizationType[] values()
for (AuthorizationType c : AuthorizationType.values()) System.out.println(c);
public static AuthorizationType 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 nullpublic static AuthorizationType forValue(java.lang.String value)
public java.lang.String toValue()
Copyright © 2019. All Rights Reserved.