Examples of ESEntityType


Examples of org.openstreetmap.osmosis.plugin.elasticsearch.model.entity.ESEntityType

      throw new DaoException("Unable to find all " + indiceName + " entities", e);
    }
  }

  protected <T extends ESEntity> MultiGetRequestBuilder buildMultiGetRequest(Class<T> entityClass, long... osmIds) {
    ESEntityType type = ESEntityType.valueOf(entityClass);
    MultiGetRequestBuilder request = client.prepareMultiGet();
    for (long osmId : osmIds) {
      request.add(new Item(indexName, type.getIndiceName(), String.valueOf(osmId))
          .fields("centroid", "lengthKm", "areaKm2", "shape", "tags"));
    }
    return request;
  }
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.