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