Package org.springframework.data.geo
Class Circle
java.lang.Object
org.springframework.data.geo.Circle
- All Implemented Interfaces:
 Serializable,Shape
Represents a geospatial circle value
- Since:
 - 1.8
 - Author:
 - Mark Pollack, Oliver Gierke, Thomas Darimont
 - See Also:
 
- 
Constructor Summary
Constructors - 
Method Summary
 
- 
Constructor Details
- 
Circle
- Parameters:
 center- must not be null.radius- must not be null and it's value greater or equal to zero.
 - 
Circle
- Parameters:
 center- must not be null.radius- 's value must be greater or equal to zero.
 - 
Circle
public Circle(double centerX, double centerY, double radius) - Parameters:
 centerX- X coordinate of the center point.centerY- Y coordinate of the center point.radius- must be greater or equal to zero.
 
 - 
 - 
Method Details