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 SummaryEnum 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 SummaryAll 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- 
TITLEpublic static final MailNotificationData.MailField TITLE The title of the item.
 - 
DESCRIPTIONpublic static final MailNotificationData.MailField DESCRIPTION The description of the item.
 - 
DUE_DATEpublic static final MailNotificationData.MailField DUE_DATE The (formatted) due date of the item.
 - 
PRIORITYpublic static final MailNotificationData.MailField PRIORITY The (formatted) priority of the item.
 - 
PROCESS_TEMPLATEpublic static final MailNotificationData.MailField PROCESS_TEMPLATE The name of the process template.
 - 
PROCESS_INSTANCEpublic static final MailNotificationData.MailField PROCESS_INSTANCE The name of the process instance.
 - 
DELEGATIONpublic static final MailNotificationData.MailField DELEGATION Delegation comment / delegator.
 - 
OPEN_ENQUIRYpublic static final MailNotificationData.MailField OPEN_ENQUIRY Unanswered enquiry.
 - 
ENQUIRY_REPLYpublic static final MailNotificationData.MailField ENQUIRY_REPLY Answered enquiry reply.
 - 
ENQUIRY_QUESTIONpublic static final MailNotificationData.MailField ENQUIRY_QUESTION Answered enquiry question.
 - 
PUBLIC_DATA_ELEMENTSpublic static final MailNotificationData.MailField PUBLIC_DATA_ELEMENTS Public data elements
 - 
WORKLIST_OWNERpublic static final MailNotificationData.MailField WORKLIST_OWNER The agents owning the worklists of the current worklist item.
 
- 
 - 
Field Detail- 
variablepublic final String variable The string of the enum as variable, i.e. %<ENUM>%
 
- 
 - 
Method Detail- 
valuespublic 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
 
 - 
valueOfpublic 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 name
- NullPointerException- if the argument is null
 
 
- 
 
-