public enum GAnimation extends Enum<GAnimation>
| 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 | 
|---|---|
String | 
toString()  | 
static GAnimation | 
valueOf(String name)
Returns the enum constant of this type with the specified name. 
 | 
static GAnimation[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final GAnimation BOUNCE
public static final GAnimation DROP
public static GAnimation[] values()
for (GAnimation c : GAnimation.values()) System.out.println(c);
public static GAnimation valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic String toString()
toString in class Enum<GAnimation>Copyright © 2015. All rights reserved.