public static enum Match.PriceType extends Enum<Match.PriceType>
Enum Constant and Description |
---|
DEFAULT_CPM_CENTS |
DISPLAY_CPM_CENTS |
RICH_MEDIA_CPM_CENTS |
TEXT_CPM_CENTS |
VIDEO_CPM_CENTS |
Modifier and Type | Method and Description |
---|---|
static Match.PriceType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Match.PriceType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Match.PriceType DEFAULT_CPM_CENTS
public static final Match.PriceType TEXT_CPM_CENTS
public static final Match.PriceType DISPLAY_CPM_CENTS
public static final Match.PriceType RICH_MEDIA_CPM_CENTS
public static final Match.PriceType VIDEO_CPM_CENTS
public static Match.PriceType[] values()
for (Match.PriceType c : Match.PriceType.values()) System.out.println(c);
public static Match.PriceType 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 null