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

net.anwiba.spatial.osm.overpass.schema.v00_6.Count Maven / Gradle / Ivy

There is a newer version: 1.2.50
Show newest version
//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;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy