public enum BannerAdSize extends java.lang.Enum<BannerAdSize>
| Enum Constant and Description |
|---|
LEADERBOARD_728x90
Leaderboard (728x90)
|
MEDIUM_RECTANGLE_300x250
Medium Rectangle (300x250)
|
SKYSCRAPER_120x600
Skyscraper (120x600)
|
XX_LARGE_320x50
XXLarge (320x50)
|
| Modifier and Type | Field and Description |
|---|---|
com.smaato.sdk.core.ad.AdDimension |
adDimension |
| Modifier and Type | Method and Description |
|---|---|
static BannerAdSize |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static BannerAdSize[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BannerAdSize XX_LARGE_320x50
public static final BannerAdSize MEDIUM_RECTANGLE_300x250
public static final BannerAdSize LEADERBOARD_728x90
public static final BannerAdSize SKYSCRAPER_120x600
public static BannerAdSize[] values()
for (BannerAdSize c : BannerAdSize.values()) System.out.println(c);
public static BannerAdSize 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