public enum Animation extends java.lang.Enum<Animation>
setAnimation
method on
Marker
or the animation option to play an animation.Enum Constant and Description |
---|
BOUNCE
Marker bounces until animation is stopped.
|
DROP
Marker falls from the top of the map ending with a small bounce.
|
Modifier and Type | Method and Description |
---|---|
static Animation |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Animation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Animation BOUNCE
public static final Animation DROP
public static Animation[] values()
for (Animation c : Animation.values()) System.out.println(c);
public static Animation 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