public static enum StaticMap.Maptype extends Enum<StaticMap.Maptype>
| Modifier and Type | Method and Description |
|---|---|
static StaticMap.Maptype |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static StaticMap.Maptype[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StaticMap.Maptype roadmap
public static final StaticMap.Maptype satellite
public static final StaticMap.Maptype hybrid
public static final StaticMap.Maptype terrain
public static StaticMap.Maptype[] values()
for (StaticMap.Maptype c : StaticMap.Maptype.values()) System.out.println(c);
public static StaticMap.Maptype 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 nullCopyright © 2018. All rights reserved.