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