All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.opentripplanner.openstreetmap.model.OSMTag Maven / Gradle / Ivy

There is a newer version: 2.5.0
Show newest version
package org.opentripplanner.openstreetmap.model;

public class OSMTag {

  private String k;
  private String v;

  public OSMTag() {
  }

  public OSMTag(String k, String v) {
    this.k = k;
    this.v = v;
  }

  public String getK() {
    return k;
  }

  public void setK(String k) {
    this.k = k;
  }

  public String getV() {
    return v;
  }

  public void setV(String v) {
    this.v = v;
  }

  public String toString() {
    return k + "=" + v;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy