public static enum MailNotificationData.Addressees extends java.lang.Enum<MailNotificationData.Addressees>
| Enum Constant and 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 from
MailNotificationData.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 from
MailNotificationData.getMailAddresses(). |
Both
The addresses are taken from the orgmodel using the staff assignment
rule and the addresses in
MailNotificationData.getMailAddresses()
as well. |
MailAddresses
The addresses are taken from
MailNotificationData.getMailAddresses() |
| Modifier and Type | Method and Description |
|---|---|
static MailNotificationData.Addressees |
valueOf(java.lang.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.
|
public static final MailNotificationData.Addressees MailAddresses
MailNotificationData.getMailAddresses()public static final MailNotificationData.Addressees AssignmentMembers
public static final MailNotificationData.Addressees AssignmentMembersAndMail
MailNotificationData.getMailAddresses().public static final MailNotificationData.Addressees AssignmentSupervisorMembers
public static final MailNotificationData.Addressees AssignmentSupervisorMembersAndMail
MailNotificationData.getMailAddresses().public static final MailNotificationData.Addressees AssignmentMembersAndSupervisors
public static final MailNotificationData.Addressees Both
MailNotificationData.getMailAddresses()
as well.public static MailNotificationData.Addressees[] values()
for (MailNotificationData.Addressees c : MailNotificationData.Addressees.values()) System.out.println(c);
public static MailNotificationData.Addressees valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null