com.supermap.data
Class GeometryType
- java.lang.Object
-
- com.supermap.data.Enum
-
- com.supermap.data.GeometryType
-
public final class GeometryType extends Enum
Defines geometric object types.
-
-
Field Summary
Fields Modifier and Type Field and Description static GeometryType
GEOARC
The ceoarc object.static GeometryType
GEOBSPLINE
The BSpline curve.static GeometryType
GEOCARDINAL
The Cardinal curve.static GeometryType
GEOCHORD
The segment consists of an ellipse's chord and arc with a rotation angle.static GeometryType
GEOCIRCLE
The GEOCIRCLE object.static GeometryType
GEOCOMPOUND
The compound geometry object.static GeometryType
GEOCURVE
The two-dimensional curve.static GeometryType
GEOELLIPSE
The GEOELLIPSE object.static GeometryType
GEOELLIPTICARC
The arc which is a part of the ellipse line.static GeometryType
GEOGRAPHICOBJECT
The situation plotting object.static GeometryType
GEOLINE
returns a GeoLine.static GeometryType
GEOLINE3D
The 3-dimensional line geometry object.static GeometryType
GEOMODEL
The three-dimensional model.static GeometryType
GEOPIE
The pie which is the portion cut by two lines from the center of the ellipse.static GeometryType
GEOPLACEMARK
The map boarder.static GeometryType
GEOPOINT
The point geometrical object.static GeometryType
GEOPOINT3D
The 3-dimensional point geometry object.static GeometryType
GEORECTANGLE
The rectangle object.static GeometryType
GEOREGION
The region geometry object.static GeometryType
GEOREGION3D
The 3-dimensional polygon geometry object.static GeometryType
GEOROUNDRECTANGLE
The rectangle object whose four corners are round.static GeometryType
GEOTEXT
The text geometry object.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method and Description static GeometryType
newInstance(int value)
Returns the custom geometry type.
-
-
-
Field Detail
-
GEOPOINT
public static final GeometryType GEOPOINT
The point geometrical object.
-
GEOLINE
public static final GeometryType GEOLINE
returns a GeoLine.
-
GEOREGION
public static final GeometryType GEOREGION
The region geometry object.
-
GEOTEXT
public static final GeometryType GEOTEXT
The text geometry object.
-
GEOARC
public static final GeometryType GEOARC
The ceoarc object. This type of geometry object is parameterized.
-
GEOBSPLINE
public static final GeometryType GEOBSPLINE
The BSpline curve. This type of geometry object is parameterized.
-
GEOCARDINAL
public static final GeometryType GEOCARDINAL
The Cardinal curve. This type of geometry object is parameterized.
-
GEOCHORD
public static final GeometryType GEOCHORD
The segment consists of an ellipse's chord and arc with a rotation angle. This type of geometry object is parameterized.
-
GEOCIRCLE
public static final GeometryType GEOCIRCLE
The GEOCIRCLE object. This type of geometry object is parameterized.
-
GEOCOMPOUND
public static final GeometryType GEOCOMPOUND
The compound geometry object. The GeoCompound object is composed of more subobjects and each subobject is the Geometry object of any type.
-
GEOCURVE
public static final GeometryType GEOCURVE
The two-dimensional curve. This type of geometry object is parameterized.
-
GEOELLIPSE
public static final GeometryType GEOELLIPSE
The GEOELLIPSE object. This type of geometry object is parameterized.
-
GEOELLIPTICARC
public static final GeometryType GEOELLIPTICARC
The arc which is a part of the ellipse line. This type of geometry object is parameterized.
-
GEOPIE
public static final GeometryType GEOPIE
The pie which is the portion cut by two lines from the center of the ellipse. This type of geometry object is parameterized.
-
GEORECTANGLE
public static final GeometryType GEORECTANGLE
The rectangle object. This type of geometry object is parameterized.
-
GEOROUNDRECTANGLE
public static final GeometryType GEOROUNDRECTANGLE
The rectangle object whose four corners are round. This type of geometry object is parameterized.
-
GEOPOINT3D
public static final GeometryType GEOPOINT3D
The 3-dimensional point geometry object. This type of geometry object is parameterized.
-
GEOLINE3D
public static final GeometryType GEOLINE3D
The 3-dimensional line geometry object. This type of geometry object is parameterized.
-
GEOREGION3D
public static final GeometryType GEOREGION3D
The 3-dimensional polygon geometry object. This type of geometry object is parameterized.
-
GEOGRAPHICOBJECT
public static final GeometryType GEOGRAPHICOBJECT
The situation plotting object. This type of geometry object is parameterized.GeoGraphicObject
-
GEOMODEL
public static final GeometryType GEOMODEL
The three-dimensional model.
-
GEOPLACEMARK
public static final GeometryType GEOPLACEMARK
The map boarder.
-
-
Method Detail
-
newInstance
public static GeometryType newInstance(int value)
Returns the custom geometry type.- Parameters:
value
- The enumeration of the custom geometry object.- Returns:
- The custom geometry type.
-
-