Examples of PGHStore


Examples of org.openstreetmap.osmosis.hstore.PGHStore

*/
public class DBUtils {
  public static Map<String, String> getMap(ResultSet rs, String columnName) throws SQLException {
    Map<String, String> tags = Maps.newHashMap();

    PGHStore dbTags = (PGHStore) rs.getObject(columnName);
    if(dbTags != null) {
      for(Map.Entry<String, String> tagEntry : dbTags.entrySet()) {
        tags.put(tagEntry.getKey(), tagEntry.getValue());
      }
    }

    return tags;
View Full Code Here

Examples of org.openstreetmap.osmosis.hstore.PGHStore

    // Do nothing.
  }
 
 
  private PGHStore buildTags(Entity entity) {
    PGHStore tags;
   
    tags = new PGHStore();
    for (Tag tag : entity.getTags()) {
      tags.put(tag.getKey(), tag.getValue());
    }
   
    return tags;
  }
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.