public enum GeometryType extends Enum<GeometryType>
Enum Constant and Description |
---|
CURVE
GM_CURVE (gml:Curve)
|
POINT
GM_POINT (gml:Point)
|
SURFACE
GM_SURFACE (gml:Suface)
|
Modifier and Type | Method and Description |
---|---|
abstract CoordinateListFactory |
getCoordinateSetFactory() |
static GeometryType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static GeometryType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GeometryType POINT
public static final GeometryType CURVE
public static final GeometryType SURFACE
public static GeometryType[] values()
for (GeometryType c : GeometryType.values()) System.out.println(c);
public static GeometryType 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 nullpublic abstract CoordinateListFactory getCoordinateSetFactory()
Copyright © 2014. All rights reserved.