org.geojson.GeometryCollection Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of geojson-jackson Show documentation
Show all versions of geojson-jackson Show documentation
A collection of Java POJOs for GeoJson
package org.geojson;
import java.util.ArrayList;
import java.util.Iterator;
import java.util.List;
public class GeometryCollection extends GeoJsonObject implements Iterable {
private List geometries = new ArrayList();
public List getGeometries() {
return geometries;
}
public void setGeometries(List geometries) {
this.geometries = geometries;
}
@Override
public Iterator iterator() {
return geometries.iterator();
}
public GeometryCollection add(GeoJsonObject geometry) {
geometries.add(geometry);
return this;
}
@Override
public T accept(GeoJsonObjectVisitor geoJsonObjectVisitor) {
return geoJsonObjectVisitor.visit(this);
}
@Override
public boolean equals(Object o) {
if (this == o)
return true;
if (!(o instanceof GeometryCollection))
return false;
if (!super.equals(o))
return false;
GeometryCollection that = (GeometryCollection)o;
return !(geometries != null ? !geometries.equals(that.geometries) : that.geometries != null);
}
@Override
public int hashCode() {
int result = super.hashCode();
result = 31 * result + (geometries != null ? geometries.hashCode() : 0);
return result;
}
@Override
public String toString() {
return "GeometryCollection{" + "geometries=" + geometries + "} " + super.toString();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy