Package com.esri.core.geometry

Examples of com.esri.core.geometry.OperatorExportToWkb.execute()


  }

  public ByteBuffer asBinary() {
    OperatorExportToWkb op = (OperatorExportToWkb) OperatorFactoryLocal
        .getInstance().getOperator(Operator.Type.ExportToWkb);
    return op.execute(0, getEsriGeometry(), null);
  }

  public boolean isEmpty() {
    return getEsriGeometry().isEmpty();
  }
View Full Code Here


  }

  public ByteBuffer asBinary() {
    OperatorExportToWkb op = (OperatorExportToWkb) OperatorFactoryLocal
        .getInstance().getOperator(Operator.Type.ExportToWkb);
    return op.execute(0, getEsriGeometry(), null);
  }

    public String asGeoJson() {
        OperatorExportToGeoJson op = (OperatorExportToGeoJson) OperatorFactoryLocal
                .getInstance().getOperator(Operator.Type.ExportToGeoJson);
View Full Code Here

    }
  @Override
  public ByteBuffer asBinary() {
    OperatorExportToWkb op = (OperatorExportToWkb) OperatorFactoryLocal
        .getInstance().getOperator(Operator.Type.ExportToWkb);
    return op.execute(WkbExportFlags.wkbExportMultiLineString,
        getEsriGeometry(), null);
  }

  @Override
  public OGCGeometry geometryN(int n) {
View Full Code Here

  @Override
  public ByteBuffer asBinary() {
    OperatorExportToWkb op = (OperatorExportToWkb) OperatorFactoryLocal
        .getInstance().getOperator(Operator.Type.ExportToWkb);
    return op.execute(WkbExportFlags.wkbExportLineString,
        getEsriGeometry(), null);
  }

  /**
   * Returns the specified Point N in this LineString.
View Full Code Here

  @Override
  public ByteBuffer asBinary() {
    OperatorExportToWkb op = (OperatorExportToWkb) OperatorFactoryLocal
        .getInstance().getOperator(Operator.Type.ExportToWkb);
    return op.execute(WkbExportFlags.wkbExportMultiPolygon,
        getEsriGeometry(), null);
  }
  @Override
    public String asGeoJson() {
        OperatorExportToGeoJson op = (OperatorExportToGeoJson) OperatorFactoryLocal
View Full Code Here

  @Override
  public ByteBuffer asBinary() {
    OperatorExportToWkb op = (OperatorExportToWkb) OperatorFactoryLocal
        .getInstance().getOperator(Operator.Type.ExportToWkb);
    return op.execute(WkbExportFlags.wkbExportPoint, getEsriGeometry(),
        null);
  }

  public double X() {
    return point.getX();
View Full Code Here

  @Override
  public ByteBuffer asBinary() {
    OperatorExportToWkb op = (OperatorExportToWkb) OperatorFactoryLocal
        .getInstance().getOperator(Operator.Type.ExportToWkb);
    return op.execute(WkbExportFlags.wkbExportPolygon, getEsriGeometry(),
        null);
  }

  /**
   * Returns the exterior ring of this Polygon.
View Full Code Here

  @Override
  public ByteBuffer asBinary() {
    OperatorExportToWkb op = (OperatorExportToWkb) OperatorFactoryLocal
        .getInstance().getOperator(Operator.Type.ExportToWkb);
    return op.execute(WkbExportFlags.wkbExportMultiPoint,
        getEsriGeometry(), null);
  }

  public OGCGeometry geometryN(int n) {
    return OGCGeometry.createFromEsriGeometry(multiPoint.getPoint(n),
View Full Code Here

  @Override
  public ByteBuffer asBinary() {
    OperatorExportToWkb op = (OperatorExportToWkb) OperatorFactoryLocal
        .getInstance().getOperator(Operator.Type.ExportToWkb);
    return op.execute(WkbExportFlags.wkbExportMultiLineString,
        getEsriGeometry(), null);
  }

  @Override
  public OGCGeometry geometryN(int n) {
View Full Code Here

  @Override
  public ByteBuffer asBinary() {
    OperatorExportToWkb op = (OperatorExportToWkb) OperatorFactoryLocal
        .getInstance().getOperator(Operator.Type.ExportToWkb);
    return op.execute(WkbExportFlags.wkbExportMultiPolygon,
        getEsriGeometry(), null);
  }

  @Override
  public int numGeometries() {
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.