public static enum ClientIdentifier.TokenEndpointAuthMethodEnum extends Enum<ClientIdentifier.TokenEndpointAuthMethodEnum>
Enum Constant and Description |
---|
CLIENT_SECRET_JWT |
PRIVATE_KEY_JWT |
Modifier and Type | Method and Description |
---|---|
static ClientIdentifier.TokenEndpointAuthMethodEnum |
fromValue(String text) |
String |
getValue() |
String |
toString() |
static ClientIdentifier.TokenEndpointAuthMethodEnum |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ClientIdentifier.TokenEndpointAuthMethodEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ClientIdentifier.TokenEndpointAuthMethodEnum CLIENT_SECRET_JWT
public static final ClientIdentifier.TokenEndpointAuthMethodEnum PRIVATE_KEY_JWT
public static ClientIdentifier.TokenEndpointAuthMethodEnum[] values()
for (ClientIdentifier.TokenEndpointAuthMethodEnum c : ClientIdentifier.TokenEndpointAuthMethodEnum.values()) System.out.println(c);
public static ClientIdentifier.TokenEndpointAuthMethodEnum 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 nullpublic String getValue()
public String toString()
toString
in class Enum<ClientIdentifier.TokenEndpointAuthMethodEnum>
public static ClientIdentifier.TokenEndpointAuthMethodEnum fromValue(String text)