public enum TwitterCreativeType extends java.lang.Enum<TwitterCreativeType>
| Enum Constant and Description |
|---|
BANNER |
BANNER_TABLET |
INTERSTITIAL |
INTERSTITIAL_LANDSCAPE |
INTERSTITIAL_LANDSCAPE_TABLET |
INTERSTITIAL_TABLET |
MEDIUM_RECTANGLE |
PREROLL |
VAST_PREROLL |
| Modifier and Type | Method and Description |
|---|---|
static TwitterCreativeType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static TwitterCreativeType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TwitterCreativeType BANNER
public static final TwitterCreativeType INTERSTITIAL
public static final TwitterCreativeType PREROLL
public static final TwitterCreativeType MEDIUM_RECTANGLE
public static final TwitterCreativeType INTERSTITIAL_LANDSCAPE_TABLET
public static final TwitterCreativeType BANNER_TABLET
public static final TwitterCreativeType INTERSTITIAL_LANDSCAPE
public static final TwitterCreativeType VAST_PREROLL
public static final TwitterCreativeType INTERSTITIAL_TABLET
public static TwitterCreativeType[] values()
for (TwitterCreativeType c : TwitterCreativeType.values()) System.out.println(c);
public static TwitterCreativeType 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