Package totalcross.money
Enum Ads.Size
- java.lang.Object
-
- java.lang.Enum<Ads.Size>
-
- totalcross.money.Ads.Size
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ADMOB_BANNERADMOB_FULLADMOB_LARGEADMOB_LEADERADMOB_MEDIUMADMOB_SKYADMOB_SMART
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static Ads.SizevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static Ads.Size[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ADMOB_BANNER
public static final Ads.Size ADMOB_BANNER
-
ADMOB_FULL
public static final Ads.Size ADMOB_FULL
-
ADMOB_LARGE
public static final Ads.Size ADMOB_LARGE
-
ADMOB_LEADER
public static final Ads.Size ADMOB_LEADER
-
ADMOB_MEDIUM
public static final Ads.Size ADMOB_MEDIUM
-
ADMOB_SKY
public static final Ads.Size ADMOB_SKY
-
ADMOB_SMART
public static final Ads.Size ADMOB_SMART
-
-
Method Detail
-
values
public static Ads.Size[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (Ads.Size c : Ads.Size.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Ads.Size valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
-