public enum ApiAuthType extends Enum<ApiAuthType>
| Enum Constant and Description |
|---|
authToken |
basic |
bearerToken |
samlBearerToken |
| Modifier and Type | Method and Description |
|---|---|
static ApiAuthType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ApiAuthType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ApiAuthType basic
public static final ApiAuthType bearerToken
public static final ApiAuthType samlBearerToken
public static final ApiAuthType authToken
public static ApiAuthType[] values()
for (ApiAuthType c : ApiAuthType.values()) System.out.println(c);
public static ApiAuthType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2015 JBoss, a division of Red Hat. All rights reserved.