Enum Class 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>,java.lang.constant.Constable
- Enclosing interface:
- MailNotificationData
Determines how the addressees are resolved for an item.
- Author:
- Kevin Goeser
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionThe addresses are taken from the org model using the staff assignment rule.The addresses are taken from theorg model using the staff assignment rule and fromMailNotificationData.getMailAddresses().The addresses for members and supervisors are taken from from org model using the staff assignment rule.The supervisor addresses are taken from the org model using the staff assignment rule.The addresses are taken from the org model using the staff assignment rule and fromMailNotificationData.getMailAddresses().The addresses are taken from the orgmodel using the staff assignment rule and the addresses inMailNotificationData.getMailAddresses()as well.The addresses are taken fromMailNotificationData.getMailAddresses() -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this class with the specified name.static MailNotificationData.Addressees[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
MailAddresses
The addresses are taken fromMailNotificationData.getMailAddresses() -
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(). -
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(). -
AssignmentMembersAndSupervisors
The addresses for members and supervisors are taken from from org model using the staff assignment rule. -
Both
The addresses are taken from the orgmodel using the staff assignment rule and the addresses inMailNotificationData.getMailAddresses()as well.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException- if the argument is null
-