public enum TrackLinks extends java.lang.Enum<TrackLinks>
Enum Constant and Description |
---|
DO_NOT_TRACK
Whether email links should not be tracked neither in HTML nor in plain text emails.
|
HTML
Whether to track links only in HTML emails.
|
HTML_AND_TEXT
Whether to track links in HTML and Plain text emails.
|
TEXT
Whether to track links only in Plain text emails.
|
Modifier and Type | Method and Description |
---|---|
static TrackLinks |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static TrackLinks[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TrackLinks HTML
public static final TrackLinks TEXT
public static final TrackLinks HTML_AND_TEXT
public static final TrackLinks DO_NOT_TRACK
public static TrackLinks[] values()
for (TrackLinks c : TrackLinks.values()) System.out.println(c);
public static TrackLinks 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