public enum HereMapStyle extends Enum<HereMapStyle> implements HasName
| Enum Constant and Description |
|---|
NONE
No map style.
|
ROADMAP
The road map style.
|
SATELLITE
The map satellite style.
|
TERRAIN
The map terrain style.
|
UNKNOWN
Fallback when enumeration value is unknown.
|
| Modifier and Type | Method and Description |
|---|---|
String |
getName() |
static HereMapStyle |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static HereMapStyle[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final HereMapStyle UNKNOWN
public static final HereMapStyle NONE
public static final HereMapStyle ROADMAP
public static final HereMapStyle SATELLITE
public static final HereMapStyle TERRAIN
public static HereMapStyle[] values()
for (HereMapStyle c : HereMapStyle.values()) System.out.println(c);
public static HereMapStyle 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 © 2023. All rights reserved.