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