Class CircleBuilder
java.lang.Object
org.opensearch.common.geo.builders.ShapeBuilder<org.locationtech.spatial4j.shape.Circle,org.opensearch.geometry.Circle,CircleBuilder>
org.opensearch.common.geo.builders.CircleBuilder
- All Implemented Interfaces:
org.opensearch.core.common.io.stream.NamedWriteable
,org.opensearch.core.common.io.stream.Writeable
,org.opensearch.core.xcontent.ToXContent
,org.opensearch.core.xcontent.ToXContentObject
public class CircleBuilder
extends ShapeBuilder<org.locationtech.spatial4j.shape.Circle,org.opensearch.geometry.Circle,CircleBuilder>
Builds a circle geometry
- Opensearch.internal:
-
Nested Class Summary
Nested classes/interfaces inherited from class org.opensearch.common.geo.builders.ShapeBuilder
ShapeBuilder.Edge, ShapeBuilder.Orientation
Nested classes/interfaces inherited from interface org.opensearch.core.xcontent.ToXContent
org.opensearch.core.xcontent.ToXContent.DelegatingMapParams, org.opensearch.core.xcontent.ToXContent.MapParams, org.opensearch.core.xcontent.ToXContent.Params
Nested classes/interfaces inherited from interface org.opensearch.core.common.io.stream.Writeable
org.opensearch.core.common.io.stream.Writeable.Reader<V>, org.opensearch.core.common.io.stream.Writeable.WriteableRegistry, org.opensearch.core.common.io.stream.Writeable.Writer<V>
-
Field Summary
Modifier and TypeFieldDescriptionstatic final org.opensearch.core.ParseField
static final GeoShapeType
Fields inherited from class org.opensearch.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.opensearch.core.xcontent.ToXContent
EMPTY_PARAMS
-
Constructor Summary
ConstructorDescriptionCreates a circle centered at [0.0, 0.0].CircleBuilder
(org.opensearch.core.common.io.stream.StreamInput in) Read from a stream. -
Method Summary
Modifier and TypeMethodDescriptionorg.opensearch.geometry.Circle
build lucene geometry.org.locationtech.spatial4j.shape.Circle
buildS4J()
Create a new Shape from this builder.org.locationtech.jts.geom.Coordinate
center()
Get the center of the circlecenter
(double lon, double lat) set the center of the circlecenter
(org.locationtech.jts.geom.Coordinate center) Set the center of the circleboolean
int
hashCode()
int
tracks number of dimensions for this shapedouble
radius()
Get the radius of the circle without unitSet the radius of the circleradius
(double radius, DistanceUnit unit) Set the radius of the circleSet the radius of the circle.radius
(DistanceUnit.Distance radius) Set the radius of the circletoWKT()
org.opensearch.core.xcontent.XContentBuilder
toXContent
(org.opensearch.core.xcontent.XContentBuilder builder, org.opensearch.core.xcontent.ToXContent.Params params) type()
get the shapes typeunit()
Get the radius unit of the circlevoid
writeTo
(org.opensearch.core.common.io.stream.StreamOutput out) Methods inherited from class org.opensearch.common.geo.builders.ShapeBuilder
contentToWKT, coordinate, coordinate, coordinateListToWKT, coordinates, coordinates, coordinates, coordinatesToXcontent, debugEnabled, getWriteableName, intersection, intersections, jtsGeometry, 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.opensearch.core.xcontent.ToXContentObject
isFragment
-
Field Details
-
FIELD_RADIUS
public static final org.opensearch.core.ParseField FIELD_RADIUS -
TYPE
-
-
Constructor Details
-
CircleBuilder
public CircleBuilder()Creates a circle centered at [0.0, 0.0]. Center can be changed by callingcenter(Coordinate)
later. -
CircleBuilder
Read from a stream.- Throws:
IOException
-
-
Method Details
-
writeTo
- Specified by:
writeTo
in interfaceorg.opensearch.core.common.io.stream.Writeable
- Overrides:
writeTo
in classShapeBuilder<org.locationtech.spatial4j.shape.Circle,
org.opensearch.geometry.Circle, CircleBuilder> - Throws:
IOException
-
center
Set the center of the circle- Parameters:
center
- coordinate of the circles center- Returns:
- this
-
center
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
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
Set the radius of the circle- Parameters:
radius
- radius of the circle (seeDistanceUnit.Distance
)- Returns:
- this
-
radius
Set the radius of the circle- Parameters:
radius
- value of the circles radiusunit
- unit name of the radius value (seeDistanceUnit
)- Returns:
- this
-
radius
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
Get the radius unit of the circle -
toXContent
public org.opensearch.core.xcontent.XContentBuilder toXContent(org.opensearch.core.xcontent.XContentBuilder builder, org.opensearch.core.xcontent.ToXContent.Params params) throws IOException - Throws:
IOException
-
buildS4J
public org.locationtech.spatial4j.shape.Circle 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<org.locationtech.spatial4j.shape.Circle,
org.opensearch.geometry.Circle, CircleBuilder> - Returns:
- new
Shape
defined by the builder
-
buildGeometry
public org.opensearch.geometry.Circle buildGeometry()Description copied from class:ShapeBuilder
build lucene geometry.- Specified by:
buildGeometry
in classShapeBuilder<org.locationtech.spatial4j.shape.Circle,
org.opensearch.geometry.Circle, CircleBuilder> - Returns:
- GeoPoint, double[][], Line, Line[], Polygon, Polygon[], Rectangle, Object[]
-
type
Description copied from class:ShapeBuilder
get the shapes type- Specified by:
type
in classShapeBuilder<org.locationtech.spatial4j.shape.Circle,
org.opensearch.geometry.Circle, CircleBuilder> - Returns:
- type of the shape
-
toWKT
- Overrides:
toWKT
in classShapeBuilder<org.locationtech.spatial4j.shape.Circle,
org.opensearch.geometry.Circle, CircleBuilder>
-
numDimensions
public int numDimensions()Description copied from class:ShapeBuilder
tracks number of dimensions for this shape- Specified by:
numDimensions
in classShapeBuilder<org.locationtech.spatial4j.shape.Circle,
org.opensearch.geometry.Circle, CircleBuilder>
-
hashCode
public int hashCode()- Overrides:
hashCode
in classShapeBuilder<org.locationtech.spatial4j.shape.Circle,
org.opensearch.geometry.Circle, CircleBuilder>
-
equals
- Overrides:
equals
in classShapeBuilder<org.locationtech.spatial4j.shape.Circle,
org.opensearch.geometry.Circle, CircleBuilder>
-