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