Enum BPMNProcessType
- java.lang.Object
-
- java.lang.Enum<BPMNProcessType>
-
- de.trustable.ca3s.core.domain.enumeration.BPMNProcessType
-
- All Implemented Interfaces:
Serializable,Comparable<BPMNProcessType>
public enum BPMNProcessType extends Enum<BPMNProcessType>
The BPMNProcessType enumeration.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ACME_ACCOUNT_AUTHORIZATIONCA_INVOCATIONCERTIFICATE_CREATIONCERTIFICATE_NOTIFYCERTIFICATE_REVOCATIONREQUEST_AUTHORIZATIONTIMED
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static BPMNProcessTypevalueOf(String name)Returns the enum constant of this type with the specified name.static BPMNProcessType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CA_INVOCATION
public static final BPMNProcessType CA_INVOCATION
-
CERTIFICATE_CREATION
public static final BPMNProcessType CERTIFICATE_CREATION
-
CERTIFICATE_REVOCATION
public static final BPMNProcessType CERTIFICATE_REVOCATION
-
CERTIFICATE_NOTIFY
public static final BPMNProcessType CERTIFICATE_NOTIFY
-
REQUEST_AUTHORIZATION
public static final BPMNProcessType REQUEST_AUTHORIZATION
-
ACME_ACCOUNT_AUTHORIZATION
public static final BPMNProcessType ACME_ACCOUNT_AUTHORIZATION
-
TIMED
public static final BPMNProcessType TIMED
-
-
Method Detail
-
values
public static BPMNProcessType[] 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 (BPMNProcessType c : BPMNProcessType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static BPMNProcessType 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
-
-