Enum V2DIFProofRequest.PresentationDefinition.Constraints.SubjectEnum
- java.lang.Object
-
- java.lang.Enum<V2DIFProofRequest.PresentationDefinition.Constraints.SubjectEnum>
-
- org.hyperledger.aries.api.present_proof_v2.V2DIFProofRequest.PresentationDefinition.Constraints.SubjectEnum
-
- All Implemented Interfaces:
Serializable,Comparable<V2DIFProofRequest.PresentationDefinition.Constraints.SubjectEnum>
- Enclosing class:
- V2DIFProofRequest.PresentationDefinition.Constraints
public static enum V2DIFProofRequest.PresentationDefinition.Constraints.SubjectEnum extends Enum<V2DIFProofRequest.PresentationDefinition.Constraints.SubjectEnum>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static V2DIFProofRequest.PresentationDefinition.Constraints.SubjectEnumvalueOf(String name)Returns the enum constant of this type with the specified name.static V2DIFProofRequest.PresentationDefinition.Constraints.SubjectEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
REQUIRED
@SerializedName("required") public static final V2DIFProofRequest.PresentationDefinition.Constraints.SubjectEnum REQUIRED
-
PREFERRED
@SerializedName("preferred") public static final V2DIFProofRequest.PresentationDefinition.Constraints.SubjectEnum PREFERRED
-
-
Method Detail
-
values
public static V2DIFProofRequest.PresentationDefinition.Constraints.SubjectEnum[] 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 (V2DIFProofRequest.PresentationDefinition.Constraints.SubjectEnum c : V2DIFProofRequest.PresentationDefinition.Constraints.SubjectEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static V2DIFProofRequest.PresentationDefinition.Constraints.SubjectEnum 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
-
-