Enum V2IssueCredentialRecordsFilter.V2CredExRecordState
- java.lang.Object
-
- java.lang.Enum<V2IssueCredentialRecordsFilter.V2CredExRecordState>
-
- org.hyperledger.aries.api.issue_credential_v2.V2IssueCredentialRecordsFilter.V2CredExRecordState
-
- All Implemented Interfaces:
Serializable,Comparable<V2IssueCredentialRecordsFilter.V2CredExRecordState>
- Enclosing class:
- V2IssueCredentialRecordsFilter
public static enum V2IssueCredentialRecordsFilter.V2CredExRecordState extends Enum<V2IssueCredentialRecordsFilter.V2CredExRecordState>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ABANDONEDCREDENTIAL_ISSUEDCREDENTIAL_RECEIVEDCREDENTIAL_REVOKEDDONEOFFER_RECEIVEDOFFER_SENTPROPOSAL_RECEIVEDPROPOSAL_SENTREQUEST_RECEIVEDREQUEST_SENT
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static V2IssueCredentialRecordsFilter.V2CredExRecordStatevalueOf(String name)Returns the enum constant of this type with the specified name.static V2IssueCredentialRecordsFilter.V2CredExRecordState[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ABANDONED
@SerializedName("abandoned") public static final V2IssueCredentialRecordsFilter.V2CredExRecordState ABANDONED- Since:
- 0.7.4
-
CREDENTIAL_ISSUED
@SerializedName("credential-issued") public static final V2IssueCredentialRecordsFilter.V2CredExRecordState CREDENTIAL_ISSUED
-
CREDENTIAL_RECEIVED
@SerializedName("credential-received") public static final V2IssueCredentialRecordsFilter.V2CredExRecordState CREDENTIAL_RECEIVED
-
CREDENTIAL_REVOKED
@SerializedName("credential-revoked") public static final V2IssueCredentialRecordsFilter.V2CredExRecordState CREDENTIAL_REVOKED
-
DONE
@SerializedName("done") public static final V2IssueCredentialRecordsFilter.V2CredExRecordState DONE
-
OFFER_RECEIVED
@SerializedName("offer-received") public static final V2IssueCredentialRecordsFilter.V2CredExRecordState OFFER_RECEIVED
-
OFFER_SENT
@SerializedName("offer-sent") public static final V2IssueCredentialRecordsFilter.V2CredExRecordState OFFER_SENT
-
PROPOSAL_RECEIVED
@SerializedName("proposal-received") public static final V2IssueCredentialRecordsFilter.V2CredExRecordState PROPOSAL_RECEIVED
-
PROPOSAL_SENT
@SerializedName("proposal-sent") public static final V2IssueCredentialRecordsFilter.V2CredExRecordState PROPOSAL_SENT
-
REQUEST_RECEIVED
@SerializedName("request-received") public static final V2IssueCredentialRecordsFilter.V2CredExRecordState REQUEST_RECEIVED
-
REQUEST_SENT
@SerializedName("request-sent") public static final V2IssueCredentialRecordsFilter.V2CredExRecordState REQUEST_SENT
-
-
Method Detail
-
values
public static V2IssueCredentialRecordsFilter.V2CredExRecordState[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (V2IssueCredentialRecordsFilter.V2CredExRecordState c : V2IssueCredentialRecordsFilter.V2CredExRecordState.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static V2IssueCredentialRecordsFilter.V2CredExRecordState valueOf(String name)
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.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
-