Enum CredentialAction
-
- All Implemented Interfaces:
-
java.io.Serializable
,kotlin.Comparable
public enum CredentialAction extends Enum<CredentialAction>
The action to use when processing a credential offer.
- Since:
3.0.7
-
-
Field Summary
Fields Modifier and Type Field Description private final String
value
private final String
name
private final Integer
ordinal
private final EnumEntries<CredentialAction>
entries
-
Method Summary
Modifier and Type Method Description final CredentialAction
valueOf(String value)
Returns the enum constant of this type with the specified name. final Array<CredentialAction>
values()
Returns an array containing the constants of this enum type, in the order they're declared. final String
getValue()
The string representation of the action, as defined in the API specification. final EnumEntries<CredentialAction>
getEntries()
The action to use when processing a credential offer. -
-
Method Detail
-
valueOf
final CredentialAction valueOf(String value)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
-
values
final Array<CredentialAction> values()
Returns an array containing the constants of this enum type, in the order they're declared.
This method may be used to iterate over the constants.
-
getValue
final String getValue()
The string representation of the action, as defined in the API specification.
-
getEntries
final EnumEntries<CredentialAction> getEntries()
The action to use when processing a credential offer.
- Since:
3.0.7
-
-
-
-