public enum APISecuritySchemeType extends Enum<APISecuritySchemeType>
| Enum Constant and Description |
|---|
BASIC_AUTH |
CUSTOM |
DIGEST |
NOT_SUPPORTED |
OAUTH2_AUTHORIZATION_CODE |
OAUTH2_CLIENT_CREDENTIALS |
PASS_THROUGH |
| Modifier and Type | Method and Description |
|---|---|
static APISecuritySchemeType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static APISecuritySchemeType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final APISecuritySchemeType BASIC_AUTH
public static final APISecuritySchemeType PASS_THROUGH
public static final APISecuritySchemeType OAUTH2_AUTHORIZATION_CODE
public static final APISecuritySchemeType OAUTH2_CLIENT_CREDENTIALS
public static final APISecuritySchemeType DIGEST
public static final APISecuritySchemeType CUSTOM
public static final APISecuritySchemeType NOT_SUPPORTED
public static APISecuritySchemeType[] values()
for (APISecuritySchemeType c : APISecuritySchemeType.values()) System.out.println(c);
public static APISecuritySchemeType 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 © 2021. All rights reserved.