public enum DHXMapType extends java.lang.Enum<DHXMapType>
Enum Constant and Description |
---|
HYBRID
Displays a transparent layer of major streets on satellite images.
|
ROADMAP
Displays a normal street map.
|
SATELLITE
Displays satellite images.
|
TERRAIN
Displays maps with physical features such as terrain and vegetation.
|
Modifier and Type | Method and Description |
---|---|
static DHXMapType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DHXMapType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DHXMapType HYBRID
public static final DHXMapType ROADMAP
public static final DHXMapType SATELLITE
public static final DHXMapType TERRAIN
public static DHXMapType[] values()
for (DHXMapType c : DHXMapType.values()) System.out.println(c);
public static DHXMapType 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