Class QueryOperation.BoundingBox

  • Enclosing class:
    QueryOperation<T>

    public static class QueryOperation.BoundingBox
    extends java.lang.Object
    Model 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 locations
      BoundingBox​(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.String toString()  
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
    • 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.
    • Method Detail

      • toString

        public java.lang.String toString()
        Overrides:
        toString in class java.lang.Object
        Returns:
        returns a url friendly representation.