Enum IndyRevRegDef.RevocDefTypeEnum
- java.lang.Object
-
- java.lang.Enum<IndyRevRegDef.RevocDefTypeEnum>
-
- org.hyperledger.acy_py.generated.model.IndyRevRegDef.RevocDefTypeEnum
-
- All Implemented Interfaces:
Serializable,Comparable<IndyRevRegDef.RevocDefTypeEnum>
- Enclosing class:
- IndyRevRegDef
public static enum IndyRevRegDef.RevocDefTypeEnum extends Enum<IndyRevRegDef.RevocDefTypeEnum>
Revocation registry type (specify CL_ACCUM)
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classIndyRevRegDef.RevocDefTypeEnum.Adapter
-
Enum Constant Summary
Enum Constants Enum Constant Description CL_ACCUM
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static IndyRevRegDef.RevocDefTypeEnumfromValue(String value)StringgetValue()StringtoString()static IndyRevRegDef.RevocDefTypeEnumvalueOf(String name)Returns the enum constant of this type with the specified name.static IndyRevRegDef.RevocDefTypeEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CL_ACCUM
public static final IndyRevRegDef.RevocDefTypeEnum CL_ACCUM
-
-
Method Detail
-
values
public static IndyRevRegDef.RevocDefTypeEnum[] 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 (IndyRevRegDef.RevocDefTypeEnum c : IndyRevRegDef.RevocDefTypeEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static IndyRevRegDef.RevocDefTypeEnum 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<IndyRevRegDef.RevocDefTypeEnum>
-
fromValue
public static IndyRevRegDef.RevocDefTypeEnum fromValue(String value)
-
-