public enum DeviceType extends Enum<DeviceType>
| Enum Constant and Description |
|---|
apiKey |
authPolicy |
awsHeader |
awsQuery |
basic |
oauth |
oauthExternal |
passThrough |
twoWaySSL |
| Modifier and Type | Method and Description |
|---|---|
static DeviceType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DeviceType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DeviceType apiKey
public static final DeviceType basic
public static final DeviceType oauth
public static final DeviceType oauthExternal
public static final DeviceType authPolicy
public static final DeviceType passThrough
public static final DeviceType awsHeader
public static final DeviceType awsQuery
public static final DeviceType twoWaySSL
public static DeviceType[] values()
for (DeviceType c : DeviceType.values()) System.out.println(c);
public static DeviceType 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 © 2020. All rights reserved.