public enum OpenGisType extends Enum<OpenGisType>
Enum Constant and Description |
---|
GEOMETRYCOLLECTION |
INVALID_TYPE |
LINESTRING |
MULTILINESTRING |
MULTIPOINT |
MULTIPOLYGON |
POINT |
POLYGON |
Modifier and Type | Method and Description |
---|---|
static OpenGisType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static OpenGisType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OpenGisType POINT
public static final OpenGisType LINESTRING
public static final OpenGisType POLYGON
public static final OpenGisType MULTIPOINT
public static final OpenGisType MULTILINESTRING
public static final OpenGisType MULTIPOLYGON
public static final OpenGisType GEOMETRYCOLLECTION
public static final OpenGisType INVALID_TYPE
public static OpenGisType[] values()
for (OpenGisType c : OpenGisType.values()) System.out.println(c);
public static OpenGisType 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 © 2015 geolatte.org. All rights reserved.