Package mil.nga.geopackage.map.geom
Enum GoogleMapShapeType
- java.lang.Object
-
- java.lang.Enum<GoogleMapShapeType>
-
- mil.nga.geopackage.map.geom.GoogleMapShapeType
-
- All Implemented Interfaces:
Serializable,Comparable<GoogleMapShapeType>
public enum GoogleMapShapeType extends Enum<GoogleMapShapeType>
Enumeration of Map shape types for handling geometry hierarchies
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static GoogleMapShapeTypevalueOf(String name)Returns the enum constant of this type with the specified name.static GoogleMapShapeType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
LAT_LNG
public static final GoogleMapShapeType LAT_LNG
-
MARKER_OPTIONS
public static final GoogleMapShapeType MARKER_OPTIONS
-
POLYLINE_OPTIONS
public static final GoogleMapShapeType POLYLINE_OPTIONS
-
POLYGON_OPTIONS
public static final GoogleMapShapeType POLYGON_OPTIONS
-
MULTI_LAT_LNG
public static final GoogleMapShapeType MULTI_LAT_LNG
-
MULTI_POLYLINE_OPTIONS
public static final GoogleMapShapeType MULTI_POLYLINE_OPTIONS
-
MULTI_POLYGON_OPTIONS
public static final GoogleMapShapeType MULTI_POLYGON_OPTIONS
-
MARKER
public static final GoogleMapShapeType MARKER
-
POLYLINE
public static final GoogleMapShapeType POLYLINE
-
POLYGON
public static final GoogleMapShapeType POLYGON
-
MULTI_MARKER
public static final GoogleMapShapeType MULTI_MARKER
-
MULTI_POLYLINE
public static final GoogleMapShapeType MULTI_POLYLINE
-
MULTI_POLYGON
public static final GoogleMapShapeType MULTI_POLYGON
-
POLYLINE_MARKERS
public static final GoogleMapShapeType POLYLINE_MARKERS
-
POLYGON_MARKERS
public static final GoogleMapShapeType POLYGON_MARKERS
-
MULTI_POLYLINE_MARKERS
public static final GoogleMapShapeType MULTI_POLYLINE_MARKERS
-
MULTI_POLYGON_MARKERS
public static final GoogleMapShapeType MULTI_POLYGON_MARKERS
-
COLLECTION
public static final GoogleMapShapeType COLLECTION
-
-
Method Detail
-
values
public static GoogleMapShapeType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (GoogleMapShapeType c : GoogleMapShapeType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static GoogleMapShapeType valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
-