public enum GeoLayerType extends Enum<GeoLayerType>
| Modifier and Type | Field and Description |
|---|---|
static String |
CODE_MARKER |
static String |
CODE_TILE |
static String |
CODE_WMS |
| Modifier and Type | Method and Description |
|---|---|
static GeoLayerType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static GeoLayerType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GeoLayerType TILE
public static final GeoLayerType MARKER
public static final GeoLayerType WMS
public static final String CODE_TILE
public static final String CODE_MARKER
public static final String CODE_WMS
public static GeoLayerType[] values()
for (GeoLayerType c : GeoLayerType.values()) System.out.println(c);
public static GeoLayerType 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 © 2016–2020 Softelnet. All rights reserved.