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 GeometryTypeGEOARCThe ceoarc object.static GeometryTypeGEOBSPLINEThe BSpline curve.static GeometryTypeGEOCARDINALThe Cardinal curve.static GeometryTypeGEOCHORDThe segment consists of an ellipse's chord and arc with a rotation angle.static GeometryTypeGEOCIRCLEThe GEOCIRCLE object.static GeometryTypeGEOCOMPOUNDThe compound geometry object.static GeometryTypeGEOCURVEThe two-dimensional curve.static GeometryTypeGEOELLIPSEThe GEOELLIPSE object.static GeometryTypeGEOELLIPTICARCThe arc which is a part of the ellipse line.static GeometryTypeGEOGRAPHICOBJECTThe situation plotting object.static GeometryTypeGEOLINEreturns a GeoLine.static GeometryTypeGEOLINE3DThe 3-dimensional line geometry object.static GeometryTypeGEOMODELThe three-dimensional model.static GeometryTypeGEOPIEThe pie which is the portion cut by two lines from the center of the ellipse.static GeometryTypeGEOPLACEMARKThe map boarder.static GeometryTypeGEOPOINTThe point geometrical object.static GeometryTypeGEOPOINT3DThe 3-dimensional point geometry object.static GeometryTypeGEORECTANGLEThe rectangle object.static GeometryTypeGEOREGIONThe region geometry object.static GeometryTypeGEOREGION3DThe 3-dimensional polygon geometry object.static GeometryTypeGEOROUNDRECTANGLEThe rectangle object whose four corners are round.static GeometryTypeGEOTEXTThe text geometry object.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method and Description static GeometryTypenewInstance(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.
-
-