Package com.inmobi.ads
Enum InMobiBanner.AnimationType
- java.lang.Object
-
- java.lang.Enum<InMobiBanner.AnimationType>
-
- com.inmobi.ads.InMobiBanner.AnimationType
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<InMobiBanner.AnimationType>
- Enclosing class:
- InMobiBanner
public static enum InMobiBanner.AnimationType extends java.lang.Enum<InMobiBanner.AnimationType>
Enumeration for the view transitions during a banner ad refresh.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ANIMATION_ALPHA
ANIMATION_OFF
ROTATE_HORIZONTAL_AXIS
ROTATE_VERTICAL_AXIS
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static InMobiBanner.AnimationType
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static InMobiBanner.AnimationType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ANIMATION_OFF
public static final InMobiBanner.AnimationType ANIMATION_OFF
-
ROTATE_HORIZONTAL_AXIS
public static final InMobiBanner.AnimationType ROTATE_HORIZONTAL_AXIS
-
ANIMATION_ALPHA
public static final InMobiBanner.AnimationType ANIMATION_ALPHA
-
ROTATE_VERTICAL_AXIS
public static final InMobiBanner.AnimationType ROTATE_VERTICAL_AXIS
-
-
Method Detail
-
values
public static InMobiBanner.AnimationType[] 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 (InMobiBanner.AnimationType c : InMobiBanner.AnimationType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static InMobiBanner.AnimationType 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
-
-