org.geojson.MultiLineString Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of geojson-jackson-java Show documentation
Show all versions of geojson-jackson-java Show documentation
A collection of Java POJOs for GeoJson (fork from https://github.com/opendatalab-de/geojson-jackson)
The newest version!
package org.geojson;
import java.util.List;
public class MultiLineString extends Geometry> {
public MultiLineString() {
}
public MultiLineString(List line) {
add(line);
}
@Override
public T accept(GeoJsonObjectVisitor geoJsonObjectVisitor) {
return geoJsonObjectVisitor.visit(this);
}
@Override
public String toString() {
return "MultiLineString{} " + super.toString();
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy