Enum MailNotificationData.MailField
- java.lang.Object
-
- java.lang.Enum<MailNotificationData.MailField>
-
- de.aristaflow.adept2.model.common.plugindata.MailNotificationData.MailField
-
- All Implemented Interfaces:
Serializable,Comparable<MailNotificationData.MailField>
- Enclosing interface:
- MailNotificationData
public static enum MailNotificationData.MailField extends Enum<MailNotificationData.MailField>
Fields which can be replaced by- Author:
- KevinGoeser
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DELEGATIONDelegation comment / delegator.DESCRIPTIONThe description of the item.DUE_DATEThe (formatted) due date of the item.ENQUIRY_QUESTIONAnswered enquiry question.ENQUIRY_REPLYAnswered enquiry reply.OPEN_ENQUIRYUnanswered enquiry.PRIORITYThe (formatted) priority of the item.PROCESS_INSTANCEThe name of the process instance.PROCESS_TEMPLATEThe name of the process template.PUBLIC_DATA_ELEMENTSPublic data elementsTITLEThe title of the item.WORKLIST_OWNERThe agents owning the worklists of the current worklist item.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static MailNotificationData.MailFieldvalueOf(String name)Returns the enum constant of this type with the specified name.static MailNotificationData.MailField[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
TITLE
public static final MailNotificationData.MailField TITLE
The title of the item.
-
DESCRIPTION
public static final MailNotificationData.MailField DESCRIPTION
The description of the item.
-
DUE_DATE
public static final MailNotificationData.MailField DUE_DATE
The (formatted) due date of the item.
-
PRIORITY
public static final MailNotificationData.MailField PRIORITY
The (formatted) priority of the item.
-
PROCESS_TEMPLATE
public static final MailNotificationData.MailField PROCESS_TEMPLATE
The name of the process template.
-
PROCESS_INSTANCE
public static final MailNotificationData.MailField PROCESS_INSTANCE
The name of the process instance.
-
DELEGATION
public static final MailNotificationData.MailField DELEGATION
Delegation comment / delegator.
-
OPEN_ENQUIRY
public static final MailNotificationData.MailField OPEN_ENQUIRY
Unanswered enquiry.
-
ENQUIRY_REPLY
public static final MailNotificationData.MailField ENQUIRY_REPLY
Answered enquiry reply.
-
ENQUIRY_QUESTION
public static final MailNotificationData.MailField ENQUIRY_QUESTION
Answered enquiry question.
-
PUBLIC_DATA_ELEMENTS
public static final MailNotificationData.MailField PUBLIC_DATA_ELEMENTS
Public data elements
-
WORKLIST_OWNER
public static final MailNotificationData.MailField WORKLIST_OWNER
The agents owning the worklists of the current worklist item.
-
-
Field Detail
-
variable
public final String variable
The string of the enum as variable, i.e. %<ENUM>%
-
-
Method Detail
-
values
public static MailNotificationData.MailField[] 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 (MailNotificationData.MailField c : MailNotificationData.MailField.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static MailNotificationData.MailField 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
-
-