Package com.esri.core.geometry
Class OperatorExportToESRIShapeCursor
- java.lang.Object
-
- com.esri.core.geometry.ByteBufferCursor
-
- com.esri.core.geometry.OperatorExportToESRIShapeCursor
-
class OperatorExportToESRIShapeCursor extends ByteBufferCursor
-
-
Field Summary
Fields Modifier and Type Field Description (package private) intm_exportFlags(package private) intm_index(package private) GeometryCursorm_inputGeometryCursor(package private) java.nio.ByteBufferm_shapeBuffer
-
Constructor Summary
Constructors Constructor Description OperatorExportToESRIShapeCursor(int exportFlags, GeometryCursor geometryCursor)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description private static intexportEnvelopeToESRIShape(int exportFlags, Envelope envelope, java.nio.ByteBuffer shapeBuffer)private static intexportMultiPathToESRIShape(boolean bPolygon, int exportFlags, MultiPath multipath, java.nio.ByteBuffer shapeBuffer)private static intexportMultiPointToESRIShape(int exportFlags, MultiPoint multipoint, java.nio.ByteBuffer shapeBuffer)private static intexportPointToESRIShape(int exportFlags, Point point, java.nio.ByteBuffer shapeBuffer)(package private) static intexportToESRIShape(int exportFlags, Geometry geometry, java.nio.ByteBuffer shapeBuffer)intgetByteBufferID()Returns the ID of the current ByteBuffer.java.nio.ByteBuffernext()Moves the cursor to the next ByteBuffer.
-
-
-
Field Detail
-
m_inputGeometryCursor
GeometryCursor m_inputGeometryCursor
-
m_exportFlags
int m_exportFlags
-
m_index
int m_index
-
m_shapeBuffer
java.nio.ByteBuffer m_shapeBuffer
-
-
Constructor Detail
-
OperatorExportToESRIShapeCursor
public OperatorExportToESRIShapeCursor(int exportFlags, GeometryCursor geometryCursor)
-
-
Method Detail
-
getByteBufferID
public int getByteBufferID()
Description copied from class:ByteBufferCursorReturns the ID of the current ByteBuffer. The ID is propagated across the operations (when possible). Returns an ID associated with the current Geometry. The ID is passed along and is returned by some operators to preserve relationship between the input and output geometry classes. It is not always possible to preserve an ID during an operation.- Specified by:
getByteBufferIDin classByteBufferCursor
-
next
public java.nio.ByteBuffer next()
Description copied from class:ByteBufferCursorMoves the cursor to the next ByteBuffer. Returns null when reached the end.- Specified by:
nextin classByteBufferCursor
-
exportToESRIShape
static int exportToESRIShape(int exportFlags, Geometry geometry, java.nio.ByteBuffer shapeBuffer)
-
exportEnvelopeToESRIShape
private static int exportEnvelopeToESRIShape(int exportFlags, Envelope envelope, java.nio.ByteBuffer shapeBuffer)
-
exportPointToESRIShape
private static int exportPointToESRIShape(int exportFlags, Point point, java.nio.ByteBuffer shapeBuffer)
-
exportMultiPointToESRIShape
private static int exportMultiPointToESRIShape(int exportFlags, MultiPoint multipoint, java.nio.ByteBuffer shapeBuffer)
-
exportMultiPathToESRIShape
private static int exportMultiPathToESRIShape(boolean bPolygon, int exportFlags, MultiPath multipath, java.nio.ByteBuffer shapeBuffer)
-
-