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.
  • Constructor Details

    • OperatorExportToWkb

      public OperatorExportToWkb()
  • Method Details

    • getType

      public Operator.Type getType()
      Specified by:
      getType in class Operator
    • execute

      public abstract ByteBuffer execute(int exportFlags, Geometry geometry, ProgressTracker progressTracker)
      Performs the ExportToWKB operation.
      Parameters:
      exportFlags - Use the WkbExportFlags 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 the WkbExportFlags 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()