net.anwiba.spatial.osm.overpass.schema.v00_6.Way Maven / Gradle / Ivy
//Copyright (c) 2017 by Andreas W. Bartels ([email protected])
package net.anwiba.spatial.osm.overpass.schema.v00_6;
import com.fasterxml.jackson.annotation.JsonProperty;
public class Way
extends OverpassObject
{
private final String type = "way";
private Object[] nodes = null;
@JsonProperty("type")
public void setType(final String type) {
}
@JsonProperty("type")
public String getType() {
return this.type;
}
@JsonProperty("nodes")
public void setNodes(final Object[] nodes) {
this.nodes = nodes;
}
@JsonProperty("nodes")
public Object[] getNodes() {
return this.nodes;
}
}