Enum MailNotificationData.Addressees
- java.lang.Object
-
- java.lang.Enum<MailNotificationData.Addressees>
-
- de.aristaflow.adept2.model.common.plugindata.MailNotificationData.Addressees
-
- All Implemented Interfaces:
Serializable
,Comparable<MailNotificationData.Addressees>
- Enclosing interface:
- MailNotificationData
public static enum MailNotificationData.Addressees extends Enum<MailNotificationData.Addressees>
Determines how the addressees are resolved for an item.- Author:
- Kevin Goeser
-
-
Enum Constant Summary
Enum Constants Enum Constant Description AssignmentMembers
The addresses are taken from the org model using the staff assignment rule.AssignmentMembersAndMail
The addresses are taken from theorg model using the staff assignment rule and fromMailNotificationData.getMailAddresses()
.AssignmentMembersAndSupervisors
The addresses for members and supervisors are taken from from org model using the staff assignment rule.AssignmentSupervisorMembers
The supervisor addresses are taken from the org model using the staff assignment rule.AssignmentSupervisorMembersAndMail
The addresses are taken from the org model using the staff assignment rule and fromMailNotificationData.getMailAddresses()
.Both
The addresses are taken from the orgmodel using the staff assignment rule and the addresses inMailNotificationData.getMailAddresses()
as well.MailAddresses
The addresses are taken fromMailNotificationData.getMailAddresses()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static MailNotificationData.Addressees
valueOf(String name)
Returns the enum constant of this type with the specified name.static MailNotificationData.Addressees[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
MailAddresses
public static final MailNotificationData.Addressees MailAddresses
The addresses are taken fromMailNotificationData.getMailAddresses()
-
AssignmentMembers
public static final MailNotificationData.Addressees AssignmentMembers
The addresses are taken from the org model using the staff assignment rule.
-
AssignmentMembersAndMail
public static final MailNotificationData.Addressees AssignmentMembersAndMail
The addresses are taken from theorg model using the staff assignment rule and fromMailNotificationData.getMailAddresses()
.
-
AssignmentSupervisorMembers
public static final MailNotificationData.Addressees AssignmentSupervisorMembers
The supervisor addresses are taken from the org model using the staff assignment rule.
-
AssignmentSupervisorMembersAndMail
public static final MailNotificationData.Addressees AssignmentSupervisorMembersAndMail
The addresses are taken from the org model using the staff assignment rule and fromMailNotificationData.getMailAddresses()
.
-
AssignmentMembersAndSupervisors
public static final MailNotificationData.Addressees AssignmentMembersAndSupervisors
The addresses for members and supervisors are taken from from org model using the staff assignment rule.
-
Both
public static final MailNotificationData.Addressees Both
The addresses are taken from the orgmodel using the staff assignment rule and the addresses inMailNotificationData.getMailAddresses()
as well.
-
-
Method Detail
-
values
public static MailNotificationData.Addressees[] 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.Addressees c : MailNotificationData.Addressees.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.Addressees 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
-
-