Package com.esri.core.geometry
Class OperatorExportToWkb
java.lang.Object
com.esri.core.geometry.Operator
com.esri.core.geometry.OperatorExportToWkb
- Direct Known Subclasses:
OperatorExportToWkbLocal
Export to WKB format.
-
Nested Class Summary
Nested classes/interfaces inherited from class com.esri.core.geometry.Operator
Operator.Type
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionabstract ByteBuffer
execute
(int exportFlags, Geometry geometry, ProgressTracker progressTracker) Performs the ExportToWKB operation.abstract int
execute
(int exportFlags, Geometry geometry, ByteBuffer wkbBuffer, ProgressTracker progressTracker) Performs the ExportToWKB operation.getType()
static OperatorExportToWkb
local()
Methods inherited from class com.esri.core.geometry.Operator
accelerateGeometry, canAccelerateGeometry, deaccelerateGeometry
-
Constructor Details
-
OperatorExportToWkb
public OperatorExportToWkb()
-
-
Method Details
-
getType
-
execute
public abstract ByteBuffer execute(int exportFlags, Geometry geometry, ProgressTracker progressTracker) Performs the ExportToWKB operation.- Parameters:
exportFlags
- Use theWkbExportFlags
interface.geometry
- The Geometry being exported.- Returns:
- Returns a ByteBuffer object containing the Geometry in WKB format
-
execute
public abstract int execute(int exportFlags, Geometry geometry, ByteBuffer wkbBuffer, ProgressTracker progressTracker) Performs the ExportToWKB operation.- Parameters:
exportFlags
- Use theWkbExportFlags
interface.geometry
- The Geometry being exported.wkbBuffer
- The ByteBuffer to contain the exported Geometry in WKB format.- Returns:
- If the input buffer is null, then the size needed for the buffer is returned. Otherwise the number of bytes written to the buffer is returned.
-
local
-