public enum DataMethod extends Enum<DataMethod>
| Enum Constant and Description |
|---|
ALL |
BRAND_SAFETY |
CONTEXTUAL |
PAGE_CLUTTER |
PAGE_LANGUAGE |
TRAQ_SCORE |
VIEWABILITY |
| Modifier and Type | Method and Description |
|---|---|
static DataMethod |
fromString(String value) |
String |
toString() |
static DataMethod |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DataMethod[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DataMethod ALL
public static final DataMethod BRAND_SAFETY
public static final DataMethod CONTEXTUAL
public static final DataMethod VIEWABILITY
public static final DataMethod PAGE_CLUTTER
public static final DataMethod PAGE_LANGUAGE
public static final DataMethod TRAQ_SCORE
public static DataMethod[] values()
for (DataMethod c : DataMethod.values()) System.out.println(c);
public static DataMethod valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic static DataMethod fromString(String value)
public String toString()
toString in class Enum<DataMethod>