Class GeometryCollectionBuilder
- java.lang.Object
-
- org.elasticsearch.common.geo.builders.ShapeBuilder
-
- org.elasticsearch.common.geo.builders.GeometryCollectionBuilder
-
- All Implemented Interfaces:
NamedWriteable
,Writeable
,ToXContent
,ToXContentObject
public class GeometryCollectionBuilder extends ShapeBuilder
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class org.elasticsearch.common.geo.builders.ShapeBuilder
ShapeBuilder.Edge, ShapeBuilder.Orientation
-
Nested classes/interfaces inherited from interface org.elasticsearch.common.xcontent.ToXContent
ToXContent.DelegatingMapParams, ToXContent.MapParams, ToXContent.Params
-
Nested classes/interfaces inherited from interface org.elasticsearch.common.io.stream.Writeable
Writeable.Reader<V>, Writeable.Writer<V>
-
-
Field Summary
Fields Modifier and Type Field Description static GeoShapeType
TYPE
-
Fields inherited from class org.elasticsearch.common.geo.builders.ShapeBuilder
AUTO_INDEX_JTS_GEOMETRY, AUTO_VALIDATE_JTS_GEOMETRY, coordinates, DATELINE, FACTORY, INTERSECTION_ORDER, LOGGER, MULTI_POLYGON_MAY_OVERLAP, SPATIAL_CONTEXT, wrapdateline, ZERO_ZERO
-
Fields inherited from interface org.elasticsearch.common.xcontent.ToXContent
EMPTY_PARAMS
-
-
Constructor Summary
Constructors Constructor Description GeometryCollectionBuilder()
Build and empty GeometryCollectionBuilder.GeometryCollectionBuilder(StreamInput in)
Read from a stream.
-
Method Summary
-
Methods inherited from class org.elasticsearch.common.geo.builders.ShapeBuilder
coordinate, coordinate, coordinateListToWKT, coordinates, coordinates, coordinates, coordinatesToXcontent, debugEnabled, getWriteableName, intersection, intersections, jtsGeometry, parse, readFromStream, shift, toString, toWKT, toXContent, writeCoordinateTo
-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface org.elasticsearch.common.xcontent.ToXContentObject
isFragment
-
-
-
-
Field Detail
-
TYPE
public static final GeoShapeType TYPE
-
-
Constructor Detail
-
GeometryCollectionBuilder
public GeometryCollectionBuilder()
Build and empty GeometryCollectionBuilder.
-
GeometryCollectionBuilder
public GeometryCollectionBuilder(StreamInput in) throws java.io.IOException
Read from a stream.- Throws:
java.io.IOException
-
-
Method Detail
-
writeTo
public void writeTo(StreamOutput out) throws java.io.IOException
Description copied from interface:Writeable
Write this into the StreamOutput.- Specified by:
writeTo
in interfaceWriteable
- Overrides:
writeTo
in classShapeBuilder
- Throws:
java.io.IOException
-
shape
public GeometryCollectionBuilder shape(ShapeBuilder shape)
-
point
public GeometryCollectionBuilder point(PointBuilder point)
-
multiPoint
public GeometryCollectionBuilder multiPoint(MultiPointBuilder multiPoint)
-
line
public GeometryCollectionBuilder line(LineStringBuilder line)
-
multiLine
public GeometryCollectionBuilder multiLine(MultiLineStringBuilder multiLine)
-
polygon
public GeometryCollectionBuilder polygon(PolygonBuilder polygon)
-
multiPolygon
public GeometryCollectionBuilder multiPolygon(MultiPolygonBuilder multiPolygon)
-
envelope
public GeometryCollectionBuilder envelope(EnvelopeBuilder envelope)
-
circle
public GeometryCollectionBuilder circle(CircleBuilder circle)
-
getShapeAt
public ShapeBuilder getShapeAt(int i)
-
numShapes
public int numShapes()
-
toXContent
public XContentBuilder toXContent(XContentBuilder builder, ToXContent.Params params) throws java.io.IOException
- Throws:
java.io.IOException
-
contentToWKT
protected java.lang.StringBuilder contentToWKT()
- Overrides:
contentToWKT
in classShapeBuilder
-
type
public GeoShapeType type()
Description copied from class:ShapeBuilder
get the shapes type- Specified by:
type
in classShapeBuilder
- Returns:
- type of the shape
-
numDimensions
public int numDimensions()
Description copied from class:ShapeBuilder
tracks number of dimensions for this shape- Specified by:
numDimensions
in classShapeBuilder
-
buildS4J
public org.locationtech.spatial4j.shape.Shape buildS4J()
Description copied from class:ShapeBuilder
Create a new Shape from this builder. Since calling this method could change the defined shape. (by inserting new coordinates or change the position of points) the builder looses its validity. So this method should only be called once on a builder- Specified by:
buildS4J
in classShapeBuilder
- Returns:
- new
Shape
defined by the builder
-
buildLucene
public java.lang.Object buildLucene()
Description copied from class:ShapeBuilder
build lucene geometry.- Specified by:
buildLucene
in classShapeBuilder
- Returns:
- GeoPoint, double[][], Line, Line[], Polygon, Polygon[], Rectangle, Object[]
-
hashCode
public int hashCode()
- Overrides:
hashCode
in classShapeBuilder
-
equals
public boolean equals(java.lang.Object obj)
- Overrides:
equals
in classShapeBuilder
-
-