public static enum GoogleMap.MapType extends Enum<GoogleMap.MapType>
Modifier and Type | Method and Description |
---|---|
static GoogleMap.MapType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static GoogleMap.MapType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GoogleMap.MapType ROADMAP
public static final GoogleMap.MapType SATELLITE
public static final GoogleMap.MapType HYBRID
public static final GoogleMap.MapType TERRAIN
public static GoogleMap.MapType[] values()
for (GoogleMap.MapType c : GoogleMap.MapType.values()) System.out.println(c);
public static GoogleMap.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 © 2020 Flowing Code. All rights reserved.