Enum V2PresentProofRecordsFilter.PresentProofRecordsFilterState
- java.lang.Object
-
- java.lang.Enum<V2PresentProofRecordsFilter.PresentProofRecordsFilterState>
-
- org.hyperledger.aries.api.present_proof_v2.V2PresentProofRecordsFilter.PresentProofRecordsFilterState
-
- All Implemented Interfaces:
Serializable,Comparable<V2PresentProofRecordsFilter.PresentProofRecordsFilterState>
- Enclosing class:
- V2PresentProofRecordsFilter
public static enum V2PresentProofRecordsFilter.PresentProofRecordsFilterState extends Enum<V2PresentProofRecordsFilter.PresentProofRecordsFilterState>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ABANDONEDDONEPRESENTATION_RECEIVEDPRESENTATIONS_SENTPROPOSAL_RECEIVEDPROPOSAL_SENTREQUEST_RECEIVEDREQUEST_SENT
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static V2PresentProofRecordsFilter.PresentProofRecordsFilterStatevalueOf(String name)Returns the enum constant of this type with the specified name.static V2PresentProofRecordsFilter.PresentProofRecordsFilterState[]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 V2PresentProofRecordsFilter.PresentProofRecordsFilterState ABANDONED
-
DONE
@SerializedName("done") public static final V2PresentProofRecordsFilter.PresentProofRecordsFilterState DONE
-
PRESENTATIONS_SENT
@SerializedName("presentation-sent") public static final V2PresentProofRecordsFilter.PresentProofRecordsFilterState PRESENTATIONS_SENT
-
PRESENTATION_RECEIVED
@SerializedName("presentation-received") public static final V2PresentProofRecordsFilter.PresentProofRecordsFilterState PRESENTATION_RECEIVED
-
PROPOSAL_RECEIVED
@SerializedName("proposal-received") public static final V2PresentProofRecordsFilter.PresentProofRecordsFilterState PROPOSAL_RECEIVED
-
PROPOSAL_SENT
@SerializedName("proposal-sent") public static final V2PresentProofRecordsFilter.PresentProofRecordsFilterState PROPOSAL_SENT
-
REQUEST_RECEIVED
@SerializedName("request-received") public static final V2PresentProofRecordsFilter.PresentProofRecordsFilterState REQUEST_RECEIVED
-
REQUEST_SENT
@SerializedName("request-sent") public static final V2PresentProofRecordsFilter.PresentProofRecordsFilterState REQUEST_SENT
-
-
Method Detail
-
values
public static V2PresentProofRecordsFilter.PresentProofRecordsFilterState[] 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 (V2PresentProofRecordsFilter.PresentProofRecordsFilterState c : V2PresentProofRecordsFilter.PresentProofRecordsFilterState.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static V2PresentProofRecordsFilter.PresentProofRecordsFilterState 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
-
-