Package de.komoot.photon.importer.nominatim.model

Examples of de.komoot.photon.importer.nominatim.model.AddressRow


      public AddressRow mapRow(ResultSet rs, int rowNum) throws SQLException {
        Integer adminLevel = rs.getInt("admin_level");
        if(rs.wasNull()) {
          adminLevel = null;
        }
        return new AddressRow(
            rs.getLong("place_id"),
            DBUtils.getMap(rs, "name"),
            rs.getString("class"),
            rs.getString("type"),
            rs.getInt("rank_address"),
View Full Code Here

TOP

Related Classes of de.komoot.photon.importer.nominatim.model.AddressRow

Copyright © 2018 www.massapicom. 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.