Package com.esri.core.geometry
Class OperatorExportToWkb
- java.lang.Object
-
- com.esri.core.geometry.Operator
-
- com.esri.core.geometry.OperatorExportToWkb
-
- Direct Known Subclasses:
OperatorExportToWkbLocal
public abstract class OperatorExportToWkb extends Operator
Export to WKB format.
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class com.esri.core.geometry.Operator
Operator.Type
-
-
Constructor Summary
Constructors Constructor Description OperatorExportToWkb()
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description abstract java.nio.ByteBuffer
execute(int exportFlags, Geometry geometry, ProgressTracker progressTracker)
Performs the ExportToWKB operation.abstract int
execute(int exportFlags, Geometry geometry, java.nio.ByteBuffer wkbBuffer, ProgressTracker progressTracker)
Performs the ExportToWKB operation.Operator.Type
getType()
static OperatorExportToWkb
local()
-
Methods inherited from class com.esri.core.geometry.Operator
accelerateGeometry, canAccelerateGeometry, deaccelerateGeometry
-
-
-
-
Method Detail
-
getType
public Operator.Type getType()
-
execute
public abstract java.nio.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, java.nio.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
public static OperatorExportToWkb local()
-
-