Package com.esri.core.geometry
Class OperatorImportFromWkb
- java.lang.Object
-
- com.esri.core.geometry.Operator
-
- com.esri.core.geometry.OperatorImportFromWkb
-
- Direct Known Subclasses:
OperatorImportFromWkbLocal
public abstract class OperatorImportFromWkb extends Operator
Import from WKB format.
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class com.esri.core.geometry.Operator
Operator.Type
-
-
Constructor Summary
Constructors Constructor Description OperatorImportFromWkb()
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description abstract Geometry
execute(int importFlags, Geometry.Type type, java.nio.ByteBuffer wkbBuffer, ProgressTracker progress_tracker)
Performs the ImportFromWKB operation.abstract OGCStructure
executeOGC(int importFlags, java.nio.ByteBuffer wkbBuffer, ProgressTracker progress_tracker)
Performs the ImportFromWkb operation.Operator.Type
getType()
static OperatorImportFromWkb
local()
-
Methods inherited from class com.esri.core.geometry.Operator
accelerateGeometry, canAccelerateGeometry, deaccelerateGeometry
-
-
-
-
Method Detail
-
getType
public Operator.Type getType()
-
execute
public abstract Geometry execute(int importFlags, Geometry.Type type, java.nio.ByteBuffer wkbBuffer, ProgressTracker progress_tracker)
Performs the ImportFromWKB operation.- Parameters:
importFlags
- Use theWkbImportFlags
interface.type
- Use theGeometry.Type
enum.wkbBuffer
- The buffer holding the Geometry in wkb format.- Returns:
- Returns the imported Geometry.
-
executeOGC
public abstract OGCStructure executeOGC(int importFlags, java.nio.ByteBuffer wkbBuffer, ProgressTracker progress_tracker)
Performs the ImportFromWkb operation.- Parameters:
importFlags
- Use theWkbImportFlags
interface.wkbBuffer
- The buffer holding the Geometry in wkb format.- Returns:
- Returns the imported OGCStructure.
-
local
public static OperatorImportFromWkb local()
-
-