Newer
Older
osmCoverage / src / osm / jp / postgis / PostgisItem.java
@hayashi hayashi on 7 Jul 2018 511 bytes export csv file
  1. package osm.jp.postgis;
  2.  
  3. public class PostgisItem {
  4. public static final int TYPE_STRING = 1;
  5. public static final int TYPE_INT = 2;
  6. public String postName = "";
  7. public String localName = "";
  8. public int type = 0;
  9.  
  10. public PostgisItem(String postName, String localName, int type) {
  11. this.postName = postName;
  12. this.localName = localName;
  13. this.type = type;
  14. }
  15.  
  16. public PostgisItem(String postName, String localName) {
  17. this(postName, localName, 0);
  18. }
  19. }