Package com.contentful.java.cda
Class QueryOperation.BoundingBox
- java.lang.Object
-
- com.contentful.java.cda.QueryOperation.BoundingBox
-
- Enclosing class:
- QueryOperation<T>
public static class QueryOperation.BoundingBox extends java.lang.ObjectModel representing a bounding box in geocoordinates.
-
-
Constructor Summary
Constructors Constructor Description BoundingBox(double bottom, double left, double top, double right)Simple constructor of bounding box taking double parameters instead of locationsBoundingBox(QueryOperation.Location bottomLeft, QueryOperation.Location topRight)Construct a bounding box with type save arguments.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringtoString()
-
-
-
Constructor Detail
-
BoundingBox
public BoundingBox(QueryOperation.Location bottomLeft, QueryOperation.Location topRight)
Construct a bounding box with type save arguments.- Parameters:
bottomLeft- bottom left corner of bounding box.topRight- top right corner of bounding box.
-
BoundingBox
public BoundingBox(double bottom, double left, double top, double right)Simple constructor of bounding box taking double parameters instead of locations- Parameters:
bottom- bottom most location of the box.left- left most location of the box.top- top most location of the box.right- right most location of the box.
-
-