net.anwiba.spatial.osm.overpass.schema.v00_6.Count 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 Count {
private Integer total = Integer.valueOf(0);
private Integer nodes = Integer.valueOf(0);
private Integer ways = Integer.valueOf(0);
private Integer relations = Integer.valueOf(0);
private Integer areas = Integer.valueOf(0);
@JsonProperty("total")
public void setTotal(final Integer total) {
this.total = total;
}
@JsonProperty("total")
public Integer getTotal() {
return this.total;
}
@JsonProperty("nodes")
public void setNodes(final Integer nodes) {
this.nodes = nodes;
}
@JsonProperty("nodes")
public Integer getNodes() {
return this.nodes;
}
@JsonProperty("ways")
public void setWays(final Integer ways) {
this.ways = ways;
}
@JsonProperty("ways")
public Integer getWays() {
return this.ways;
}
@JsonProperty("relations")
public void setRelations(final Integer relations) {
this.relations = relations;
}
@JsonProperty("relations")
public Integer getRelations() {
return this.relations;
}
@JsonProperty("areas")
public void setAreas(final Integer areas) {
this.areas = areas;
}
@JsonProperty("areas")
public Integer getAreas() {
return this.areas;
}
}