Class RESTBoundingBox


  • public class RESTBoundingBox
    extends java.lang.Object
    Parse a Boundingbox of the following structure
     
     <minx>472800.0</minx>
     <maxx>817362.0</maxx>
     <miny>35053.40625</miny>
     <maxy>301500.0</maxy>
     <crs class="projected">EPSG:21781</crs>
     
     
    Version:
    $Id: $
    Author:
    nmandery
    • Field Summary

      Fields 
      Modifier and Type Field Description
      protected org.jdom.Element bboxElem  
    • Constructor Summary

      Constructors 
      Constructor Description
      RESTBoundingBox​(org.jdom.Element bboxElem)
      Constructor for RESTBoundingBox.
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.lang.String getCRS()
      getCRS
      protected double getEdge​(java.lang.String edge)
      getEdge
      double getMaxX()
      getMaxX
      double getMaxY()
      getMaxY
      double getMinX()
      getMinX
      double getMinY()
      getMinY
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Field Detail

      • bboxElem

        protected org.jdom.Element bboxElem
    • Constructor Detail

      • RESTBoundingBox

        public RESTBoundingBox​(org.jdom.Element bboxElem)

        Constructor for RESTBoundingBox.

        Parameters:
        bboxElem - a Element object.
    • Method Detail

      • getCRS

        public java.lang.String getCRS()

        getCRS

        Returns:
        a String object.
      • getEdge

        protected double getEdge​(java.lang.String edge)

        getEdge

        Parameters:
        edge - a String object.
        Returns:
        a double.
      • getMinX

        public double getMinX()

        getMinX

        Returns:
        a double.
      • getMaxX

        public double getMaxX()

        getMaxX

        Returns:
        a double.
      • getMinY

        public double getMinY()

        getMinY

        Returns:
        a double.
      • getMaxY

        public double getMaxY()

        getMaxY

        Returns:
        a double.