Uses of Class
org.locationtech.jts.geom.GeometryCollection
-
Packages that use GeometryCollection Package Description org.locationtech.jts.algorithm Contains classes and interfaces implementing fundamental computational geometry algorithms.org.locationtech.jts.awt Classes to perform conversions from Java2D shape objects.org.locationtech.jts.geom Contains theGeometry
interface hierarchy and supporting classes.org.locationtech.jts.geom.util Provides classes that parse and modify Geometry objects.org.locationtech.jts.geomgraph Contains classes that implement topology graphs.org.locationtech.jts.io Contains the interfaces for converting JTS objects to and from other formats.org.locationtech.jts.io.geojson org.locationtech.jts.io.gml2 Classes to read and write the GML2 geometry format.org.locationtech.jts.io.kml org.locationtech.jts.operation.buffer Provides classes for computing buffers of geometriesorg.locationtech.jts.operation.valid Provides classes for testing the validity of geometries.org.locationtech.jtstest.clean org.locationtech.jtstest.testbuilder org.locationtech.jtstest.testbuilder.io.shapefile org.locationtech.jtstest.testbuilder.ui.render org.locationtech.jtstest.util.io -
-
Uses of GeometryCollection in org.locationtech.jts.algorithm
Methods in org.locationtech.jts.algorithm with parameters of type GeometryCollection Modifier and Type Method Description private Geometry
InteriorPointArea. widestGeometry(GeometryCollection gc)
-
Uses of GeometryCollection in org.locationtech.jts.awt
Methods in org.locationtech.jts.awt with parameters of type GeometryCollection Modifier and Type Method Description private java.awt.Shape
ShapeWriter. toShape(GeometryCollection gc)
-
Uses of GeometryCollection in org.locationtech.jts.geom
Subclasses of GeometryCollection in org.locationtech.jts.geom Modifier and Type Class Description class
MultiLineString
Models a collection ofLineString
s.class
MultiPoint
Models a collection ofPoint
s.class
MultiPolygon
Models a collection ofPolygon
s.Methods in org.locationtech.jts.geom that return GeometryCollection Modifier and Type Method Description GeometryCollection
GeometryCollection. copy()
Creates and returns a full copy of thisGeometryCollection
object.GeometryCollection
GeometryFactory. createGeometryCollection()
GeometryCollection
GeometryFactory. createGeometryCollection(Geometry[] geometries)
Creates a GeometryCollection using the given Geometries; a null or empty array will create an empty GeometryCollection. -
Uses of GeometryCollection in org.locationtech.jts.geom.util
Methods in org.locationtech.jts.geom.util that return GeometryCollection Modifier and Type Method Description private GeometryCollection
GeometryEditor. editGeometryCollection(GeometryCollection collection, GeometryEditor.GeometryEditorOperation operation)
GeometryCollection
GeometryCollectionMapper. map(GeometryCollection gc)
static GeometryCollection
GeometryCollectionMapper. map(GeometryCollection gc, GeometryMapper.MapOp op)
Methods in org.locationtech.jts.geom.util with parameters of type GeometryCollection Modifier and Type Method Description private GeometryCollection
GeometryEditor. editGeometryCollection(GeometryCollection collection, GeometryEditor.GeometryEditorOperation operation)
GeometryCollection
GeometryCollectionMapper. map(GeometryCollection gc)
static GeometryCollection
GeometryCollectionMapper. map(GeometryCollection gc, GeometryMapper.MapOp op)
protected Geometry
GeometryTransformer. transformGeometryCollection(GeometryCollection geom, Geometry parent)
-
Uses of GeometryCollection in org.locationtech.jts.geomgraph
Methods in org.locationtech.jts.geomgraph with parameters of type GeometryCollection Modifier and Type Method Description private void
GeometryGraph. addCollection(GeometryCollection gc)
-
Uses of GeometryCollection in org.locationtech.jts.io
Methods in org.locationtech.jts.io that return GeometryCollection Modifier and Type Method Description private GeometryCollection
WKBReader. readGeometryCollection()
private GeometryCollection
WKTReader. readGeometryCollectionText()
Creates aGeometryCollection
using the next token in the stream.Methods in org.locationtech.jts.io with parameters of type GeometryCollection Modifier and Type Method Description private void
WKTWriter. appendGeometryCollectionTaggedText(GeometryCollection geometryCollection, int level, java.io.Writer writer)
Converts aGeometryCollection
to <GeometryCollection Tagged Text> format, then appends it to the writer.private void
WKTWriter. appendGeometryCollectionText(GeometryCollection geometryCollection, int level, java.io.Writer writer)
Converts aGeometryCollection
to <GeometryCollectionText> format, then appends it to the writer.private void
WKBWriter. writeGeometryCollection(int geometryType, GeometryCollection gc, OutStream os)
-
Uses of GeometryCollection in org.locationtech.jts.io.geojson
Methods in org.locationtech.jts.io.geojson with parameters of type GeometryCollection Modifier and Type Method Description private java.util.List<java.lang.Object>
GeoJsonWriter. makeJsonAware(GeometryCollection geometryCollection)
-
Uses of GeometryCollection in org.locationtech.jts.io.gml2
Methods in org.locationtech.jts.io.gml2 with parameters of type GeometryCollection Modifier and Type Method Description private void
GMLWriter. writeGeometryCollection(GeometryCollection gc, java.io.Writer writer, int level)
-
Uses of GeometryCollection in org.locationtech.jts.io.kml
Methods in org.locationtech.jts.io.kml with parameters of type GeometryCollection Modifier and Type Method Description private void
KMLWriter. writeGeometryCollection(GeometryCollection gc, java.lang.String attributes, int level, java.lang.StringBuffer buf)
-
Uses of GeometryCollection in org.locationtech.jts.operation.buffer
Methods in org.locationtech.jts.operation.buffer with parameters of type GeometryCollection Modifier and Type Method Description private void
OffsetCurveSetBuilder. addCollection(GeometryCollection gc)
-
Uses of GeometryCollection in org.locationtech.jts.operation.valid
Methods in org.locationtech.jts.operation.valid with parameters of type GeometryCollection Modifier and Type Method Description private void
IsValidOp. checkValid(GeometryCollection gc)
private boolean
RepeatedPointTester. hasRepeatedPoint(GeometryCollection gc)
-
Uses of GeometryCollection in org.locationtech.jtstest.clean
Methods in org.locationtech.jtstest.clean that return GeometryCollection Modifier and Type Method Description private GeometryCollection
CleanDuplicatePoints. clean(GeometryCollection g)
Methods in org.locationtech.jtstest.clean with parameters of type GeometryCollection Modifier and Type Method Description private GeometryCollection
CleanDuplicatePoints. clean(GeometryCollection g)
-
Uses of GeometryCollection in org.locationtech.jtstest.testbuilder
Fields in org.locationtech.jtstest.testbuilder declared as GeometryCollection Modifier and Type Field Description (package private) GeometryCollection
GeometryCollectionNode. coll
Constructors in org.locationtech.jtstest.testbuilder with parameters of type GeometryCollection Constructor Description GeometryCollectionNode(GeometryCollection coll, GeometryContext context)
-
Uses of GeometryCollection in org.locationtech.jtstest.testbuilder.io.shapefile
Methods in org.locationtech.jtstest.testbuilder.io.shapefile that return GeometryCollection Modifier and Type Method Description GeometryCollection
Shapefile. read(GeometryFactory geometryFactory)
Initialises a shapefile from disk.Constructors in org.locationtech.jtstest.testbuilder.io.shapefile with parameters of type GeometryCollection Constructor Description ShapefileHeader(GeometryCollection geometries, int dims)
-
Uses of GeometryCollection in org.locationtech.jtstest.testbuilder.ui.render
Methods in org.locationtech.jtstest.testbuilder.ui.render with parameters of type GeometryCollection Modifier and Type Method Description private static void
GeometryPainter. paintGeometryCollection(java.awt.Graphics2D g, Viewport viewport, GeometryCollection gc, Style style)
-
Uses of GeometryCollection in org.locationtech.jtstest.util.io
Methods in org.locationtech.jtstest.util.io with parameters of type GeometryCollection Modifier and Type Method Description private void
SVGWriter. appendGeometryCollectionTaggedText(GeometryCollection geometryCollection, int level, java.io.Writer writer)
Converts aGeometryCollection
to <GeometryCollection Tagged Text> format, then appends it to the writer.private void
SVGWriter. appendGeometryCollectionText(GeometryCollection geometryCollection, int level, java.io.Writer writer)
Converts aGeometryCollection
to <GeometryCollectionText> format, then appends it to the writer.
-