Class CircleBuilder
- java.lang.Object
-
- org.elasticsearch.common.geo.builders.ShapeBuilder<org.locationtech.spatial4j.shape.Circle,CircleBuilder>
-
- org.elasticsearch.common.geo.builders.CircleBuilder
-
- All Implemented Interfaces:
NamedWriteable,Writeable,ToXContent,ToXContentObject
public class CircleBuilder extends ShapeBuilder<org.locationtech.spatial4j.shape.Circle,CircleBuilder>
-
-
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 ParseFieldFIELD_RADIUSstatic GeoShapeTypeTYPE-
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 CircleBuilder()Creates a circle centered at [0.0, 0.0].CircleBuilder(StreamInput in)Read from a stream.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.ObjectbuildLucene()build lucene geometry.org.locationtech.spatial4j.shape.CirclebuildS4J()Create a new Shape from this builder.org.locationtech.jts.geom.Coordinatecenter()Get the center of the circleCircleBuildercenter(double lon, double lat)set the center of the circleCircleBuildercenter(org.locationtech.jts.geom.Coordinate center)Set the center of the circlebooleanequals(java.lang.Object obj)inthashCode()intnumDimensions()tracks number of dimensions for this shapedoubleradius()Get the radius of the circle without unitCircleBuilderradius(double radius, java.lang.String unit)Set the radius of the circleCircleBuilderradius(double radius, DistanceUnit unit)Set the radius of the circleCircleBuilderradius(java.lang.String radius)Set the radius of the circle.CircleBuilderradius(DistanceUnit.Distance radius)Set the radius of the circlejava.lang.StringtoWKT()XContentBuildertoXContent(XContentBuilder builder, ToXContent.Params params)GeoShapeTypetype()get the shapes typeDistanceUnitunit()Get the radius unit of the circlevoidwriteTo(StreamOutput out)Write this into the StreamOutput.-
Methods inherited from class org.elasticsearch.common.geo.builders.ShapeBuilder
contentToWKT, coordinate, coordinate, coordinateListToWKT, coordinates, coordinates, coordinates, coordinatesToXcontent, debugEnabled, getWriteableName, intersection, intersections, jtsGeometry, parse, readFromStream, shift, toString, 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
-
FIELD_RADIUS
public static final ParseField FIELD_RADIUS
-
TYPE
public static final GeoShapeType TYPE
-
-
Constructor Detail
-
CircleBuilder
public CircleBuilder()
Creates a circle centered at [0.0, 0.0]. Center can be changed by callingcenter(Coordinate)later.
-
CircleBuilder
public CircleBuilder(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:WriteableWrite this into the StreamOutput.- Specified by:
writeToin interfaceWriteable- Overrides:
writeToin classShapeBuilder<org.locationtech.spatial4j.shape.Circle,CircleBuilder>- Throws:
java.io.IOException
-
center
public CircleBuilder center(org.locationtech.jts.geom.Coordinate center)
Set the center of the circle- Parameters:
center- coordinate of the circles center- Returns:
- this
-
center
public CircleBuilder center(double lon, double lat)
set the center of the circle- Parameters:
lon- longitude of the centerlat- latitude of the center- Returns:
- this
-
center
public org.locationtech.jts.geom.Coordinate center()
Get the center of the circle
-
radius
public CircleBuilder radius(java.lang.String radius)
Set the radius of the circle. The String value will be parsed byDistanceUnit- Parameters:
radius- Value and unit of the circle combined in a string- Returns:
- this
-
radius
public CircleBuilder radius(DistanceUnit.Distance radius)
Set the radius of the circle- Parameters:
radius- radius of the circle (seeDistanceUnit.Distance)- Returns:
- this
-
radius
public CircleBuilder radius(double radius, java.lang.String unit)
Set the radius of the circle- Parameters:
radius- value of the circles radiusunit- unit name of the radius value (seeDistanceUnit)- Returns:
- this
-
radius
public CircleBuilder radius(double radius, DistanceUnit unit)
Set the radius of the circle- Parameters:
radius- value of the circles radiusunit- unit of the radius value (seeDistanceUnit)- Returns:
- this
-
radius
public double radius()
Get the radius of the circle without unit
-
unit
public DistanceUnit unit()
Get the radius unit of the circle
-
toXContent
public XContentBuilder toXContent(XContentBuilder builder, ToXContent.Params params) throws java.io.IOException
- Throws:
java.io.IOException
-
buildS4J
public org.locationtech.spatial4j.shape.Circle buildS4J()
Description copied from class:ShapeBuilderCreate 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:
buildS4Jin classShapeBuilder<org.locationtech.spatial4j.shape.Circle,CircleBuilder>- Returns:
- new
Shapedefined by the builder
-
buildLucene
public java.lang.Object buildLucene()
Description copied from class:ShapeBuilderbuild lucene geometry.- Specified by:
buildLucenein classShapeBuilder<org.locationtech.spatial4j.shape.Circle,CircleBuilder>- Returns:
- GeoPoint, double[][], Line, Line[], Polygon, Polygon[], Rectangle, Object[]
-
type
public GeoShapeType type()
Description copied from class:ShapeBuilderget the shapes type- Specified by:
typein classShapeBuilder<org.locationtech.spatial4j.shape.Circle,CircleBuilder>- Returns:
- type of the shape
-
toWKT
public java.lang.String toWKT()
- Overrides:
toWKTin classShapeBuilder<org.locationtech.spatial4j.shape.Circle,CircleBuilder>
-
numDimensions
public int numDimensions()
Description copied from class:ShapeBuildertracks number of dimensions for this shape- Specified by:
numDimensionsin classShapeBuilder<org.locationtech.spatial4j.shape.Circle,CircleBuilder>
-
hashCode
public int hashCode()
- Overrides:
hashCodein classShapeBuilder<org.locationtech.spatial4j.shape.Circle,CircleBuilder>
-
equals
public boolean equals(java.lang.Object obj)
- Overrides:
equalsin classShapeBuilder<org.locationtech.spatial4j.shape.Circle,CircleBuilder>
-
-