public enum MessageTrackingReportTemplate extends java.lang.Enum<MessageTrackingReportTemplate>
| Enum Constant and Description |
|---|
RECIPIENT_PATH
Specifies that for a single recipient, the report will display a full history of the events that occurred.
|
SUMMARY
Specifies that the report will display all the recipients of the message and the delivery status of the message to each recipient.
|
| Modifier and Type | Method and Description |
|---|---|
static MessageTrackingReportTemplate |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static MessageTrackingReportTemplate[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MessageTrackingReportTemplate SUMMARY
public static final MessageTrackingReportTemplate RECIPIENT_PATH
public static MessageTrackingReportTemplate[] values()
for (MessageTrackingReportTemplate c : MessageTrackingReportTemplate.values()) System.out.println(c);
public static MessageTrackingReportTemplate 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