Package org.hippoecm.repository.api
Enum DocumentWorkflowAction.DocumentPayloadKey
- java.lang.Object
-
- java.lang.Enum<DocumentWorkflowAction.DocumentPayloadKey>
-
- org.hippoecm.repository.api.DocumentWorkflowAction.DocumentPayloadKey
-
- All Implemented Interfaces:
Serializable
,Comparable<DocumentWorkflowAction.DocumentPayloadKey>
,WorkflowAction.PayloadKey
- Enclosing class:
- DocumentWorkflowAction
public static enum DocumentWorkflowAction.DocumentPayloadKey extends Enum<DocumentWorkflowAction.DocumentPayloadKey> implements WorkflowAction.PayloadKey
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BRANCH_ID
BRANCH_NAME
DATE
DESTINATION
FROM_DATE
FROZEN_NODE_ID
NAME
REASON
REQUEST
STATE
TARGET_DATE
TARGET_DOCUMENT
TO_DATE
VERSION
VERSION_LABEL
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getKey()
static DocumentWorkflowAction.DocumentPayloadKey
valueOf(String name)
Returns the enum constant of this type with the specified name.static DocumentWorkflowAction.DocumentPayloadKey[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
TARGET_DATE
public static final DocumentWorkflowAction.DocumentPayloadKey TARGET_DATE
-
NAME
public static final DocumentWorkflowAction.DocumentPayloadKey NAME
-
DESTINATION
public static final DocumentWorkflowAction.DocumentPayloadKey DESTINATION
-
DATE
public static final DocumentWorkflowAction.DocumentPayloadKey DATE
-
TARGET_DOCUMENT
public static final DocumentWorkflowAction.DocumentPayloadKey TARGET_DOCUMENT
-
REQUEST
public static final DocumentWorkflowAction.DocumentPayloadKey REQUEST
-
REASON
public static final DocumentWorkflowAction.DocumentPayloadKey REASON
-
BRANCH_ID
public static final DocumentWorkflowAction.DocumentPayloadKey BRANCH_ID
-
VERSION
public static final DocumentWorkflowAction.DocumentPayloadKey VERSION
-
BRANCH_NAME
public static final DocumentWorkflowAction.DocumentPayloadKey BRANCH_NAME
-
FROZEN_NODE_ID
public static final DocumentWorkflowAction.DocumentPayloadKey FROZEN_NODE_ID
-
FROM_DATE
public static final DocumentWorkflowAction.DocumentPayloadKey FROM_DATE
-
TO_DATE
public static final DocumentWorkflowAction.DocumentPayloadKey TO_DATE
-
VERSION_LABEL
public static final DocumentWorkflowAction.DocumentPayloadKey VERSION_LABEL
-
STATE
public static final DocumentWorkflowAction.DocumentPayloadKey STATE
-
-
Method Detail
-
values
public static DocumentWorkflowAction.DocumentPayloadKey[] 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 (DocumentWorkflowAction.DocumentPayloadKey c : DocumentWorkflowAction.DocumentPayloadKey.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static DocumentWorkflowAction.DocumentPayloadKey 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
-
getKey
public String getKey()
- Specified by:
getKey
in interfaceWorkflowAction.PayloadKey
-
-