public enum TrackingReportType extends java.lang.Enum<TrackingReportType>
Enum Constant and Description |
---|
EMAIL_BOUNCE |
EMAIL_CLICK |
EMAIL_FORWARD |
EMAIL_OPEN |
EMAIL_SEND |
EMAIL_UNSUBSCRIBE |
Modifier and Type | Method and Description |
---|---|
static TrackingReportType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static TrackingReportType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TrackingReportType EMAIL_BOUNCE
public static final TrackingReportType EMAIL_CLICK
public static final TrackingReportType EMAIL_FORWARD
public static final TrackingReportType EMAIL_OPEN
public static final TrackingReportType EMAIL_SEND
public static final TrackingReportType EMAIL_UNSUBSCRIBE
public static TrackingReportType[] values()
for (TrackingReportType c : TrackingReportType.values()) System.out.println(c);
public static TrackingReportType 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