Enum IndyProofReqPredSpec.PTypeEnum
- java.lang.Object
-
- java.lang.Enum<IndyProofReqPredSpec.PTypeEnum>
-
- org.hyperledger.acy_py.generated.model.IndyProofReqPredSpec.PTypeEnum
-
- All Implemented Interfaces:
Serializable,Comparable<IndyProofReqPredSpec.PTypeEnum>
- Enclosing class:
- IndyProofReqPredSpec
public static enum IndyProofReqPredSpec.PTypeEnum extends Enum<IndyProofReqPredSpec.PTypeEnum>
Predicate type ('<', '<=', '>=', or '>')
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classIndyProofReqPredSpec.PTypeEnum.Adapter
-
Enum Constant Summary
Enum Constants Enum Constant Description GREATER_THANGREATER_THAN_OR_EQUAL_TOLESS_THANLESS_THAN_OR_EQUAL_TO
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static IndyProofReqPredSpec.PTypeEnumfromValue(String value)StringgetValue()StringtoString()static IndyProofReqPredSpec.PTypeEnumvalueOf(String name)Returns the enum constant of this type with the specified name.static IndyProofReqPredSpec.PTypeEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
LESS_THAN
public static final IndyProofReqPredSpec.PTypeEnum LESS_THAN
-
LESS_THAN_OR_EQUAL_TO
public static final IndyProofReqPredSpec.PTypeEnum LESS_THAN_OR_EQUAL_TO
-
GREATER_THAN_OR_EQUAL_TO
public static final IndyProofReqPredSpec.PTypeEnum GREATER_THAN_OR_EQUAL_TO
-
GREATER_THAN
public static final IndyProofReqPredSpec.PTypeEnum GREATER_THAN
-
-
Method Detail
-
values
public static IndyProofReqPredSpec.PTypeEnum[] 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 (IndyProofReqPredSpec.PTypeEnum c : IndyProofReqPredSpec.PTypeEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static IndyProofReqPredSpec.PTypeEnum 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
-
getValue
public String getValue()
-
toString
public String toString()
- Overrides:
toStringin classEnum<IndyProofReqPredSpec.PTypeEnum>
-
fromValue
public static IndyProofReqPredSpec.PTypeEnum fromValue(String value)
-
-