Enum Class RevocationStateType

java.lang.Object
java.lang.Enum<RevocationStateType>
org.pgpainless.algorithm.RevocationStateType
All Implemented Interfaces:
Serializable, Comparable<RevocationStateType>, Constable

public enum RevocationStateType extends Enum<RevocationStateType>
  • Enum Constant Details

    • notRevoked

      public static final RevocationStateType notRevoked
      Certificate is not revoked.
    • softRevoked

      public static final RevocationStateType softRevoked
      Certificate is revoked with a soft revocation.
    • hardRevoked

      public static final RevocationStateType hardRevoked
      Certificate is revoked with a hard revocation.
  • Method Details

    • values

      public static RevocationStateType[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static RevocationStateType valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified name
      NullPointerException - if the argument is null