public enum HokMethod extends Enum<HokMethod>
| Enum Constant and Description |
|---|
MTLS
This represents
Mutual TLS Client Certificate Bound Access Tokens.
|
OAUTB
This represents
OAuth 2.0 Token Binding
|
| Modifier and Type | Method and Description |
|---|---|
static HokMethod |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static HokMethod[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final HokMethod MTLS
public static final HokMethod OAUTB
public static HokMethod[] values()
for (HokMethod c : HokMethod.values()) System.out.println(c);
public static HokMethod 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 © 2019. All rights reserved.