|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Object java.lang.Enum<MultiGeometry.MultiGeometryType> org.deegree.geometry.multi.MultiGeometry.MultiGeometryType
public static enum MultiGeometry.MultiGeometryType
Convenience enum type for discriminating the different types of multi geometries.
Enum Constant Summary | |
---|---|
MULTI_CURVE
Member geometries are Curve instances. |
|
MULTI_GEOMETRY
Generic multi geometry. |
|
MULTI_LINE_STRING
Member geometries are LineString instances. |
|
MULTI_POINT
Member geometries are Point instances. |
|
MULTI_POLYGON
Member geometries are Polygon instances. |
|
MULTI_SOLID
Member geometries are Solid instances. |
|
MULTI_SURFACE
Member geometries are Surface instances. |
Method Summary | |
---|---|
static MultiGeometry.MultiGeometryType |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static MultiGeometry.MultiGeometryType[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final MultiGeometry.MultiGeometryType MULTI_GEOMETRY
Geometry
instances.
public static final MultiGeometry.MultiGeometryType MULTI_POINT
Point
instances.
public static final MultiGeometry.MultiGeometryType MULTI_CURVE
Curve
instances.
public static final MultiGeometry.MultiGeometryType MULTI_LINE_STRING
LineString
instances.
public static final MultiGeometry.MultiGeometryType MULTI_SURFACE
Surface
instances.
public static final MultiGeometry.MultiGeometryType MULTI_POLYGON
Polygon
instances.
public static final MultiGeometry.MultiGeometryType MULTI_SOLID
Solid
instances.
Method Detail |
---|
public static MultiGeometry.MultiGeometryType[] values()
for (MultiGeometry.MultiGeometryType c : MultiGeometry.MultiGeometryType.values()) System.out.println(c);
public static MultiGeometry.MultiGeometryType valueOf(String name)
name
- the name of the enum constant to be returned.
IllegalArgumentException
- if this enum type has no constant
with the specified name
NullPointerException
- if the argument is null
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |