Newer
Older
osmCoverage / src / osm / jp / postgis / PostgisItem.java
@hayashi hayashi on 7 Jul 2018 511 bytes export csv file
package osm.jp.postgis;

public class PostgisItem {
    public static final int TYPE_STRING = 1;
    public static final int TYPE_INT = 2;
    public String postName = "";
    public String localName = "";
    public int type = 0;

    public PostgisItem(String postName, String localName, int type) {
        this.postName = postName;
        this.localName = localName;
        this.type = type;
    }

    public PostgisItem(String postName, String localName) {
        this(postName, localName, 0);
    }
}