Class Circle

  • All Implemented Interfaces:
    Geometry

    public class Circle
    extends java.lang.Object
    implements Geometry
    Circle geometry (not part of WKT standard, but used in elasticsearch) defined by lat/lon coordinates of the center in degrees and optional altitude in meters.
    • Field Summary

      Fields 
      Modifier and Type Field Description
      static Circle EMPTY  
    • Constructor Summary

      Constructors 
      Constructor Description
      Circle​(double x, double y, double radiusMeters)  
      Circle​(double x, double y, double z, double radiusMeters)  
    • Method Summary

      Modifier and Type Method Description
      boolean equals​(java.lang.Object o)  
      double getAlt()  
      double getLat()  
      double getLon()  
      double getRadiusMeters()  
      double getX()  
      double getY()  
      double getZ()  
      int hashCode()  
      boolean hasZ()  
      boolean isEmpty()  
      java.lang.String toString()  
      ShapeType type()  
      <T,​E extends java.lang.Exception>
      T
      visit​(GeometryVisitor<T,​E> visitor)  
      • Methods inherited from class java.lang.Object

        clone, finalize, getClass, notify, notifyAll, wait, wait, wait
      • Methods inherited from interface org.elasticsearch.geometry.Geometry

        hasAlt
    • Field Detail

      • EMPTY

        public static final Circle EMPTY
    • Constructor Detail

      • Circle

        public Circle​(double x,
                      double y,
                      double radiusMeters)
      • Circle

        public Circle​(double x,
                      double y,
                      double z,
                      double radiusMeters)
    • Method Detail

      • getY

        public double getY()
      • getX

        public double getX()
      • getRadiusMeters

        public double getRadiusMeters()
      • getZ

        public double getZ()
      • getLat

        public double getLat()
      • getLon

        public double getLon()
      • getAlt

        public double getAlt()
      • equals

        public boolean equals​(java.lang.Object o)
        Overrides:
        equals in class java.lang.Object
      • hashCode

        public int hashCode()
        Overrides:
        hashCode in class java.lang.Object
      • visit

        public <T,​E extends java.lang.Exception> T visit​(GeometryVisitor<T,​E> visitor)
                                                        throws E extends java.lang.Exception
        Specified by:
        visit in interface Geometry
        Throws:
        E extends java.lang.Exception
      • isEmpty

        public boolean isEmpty()
        Specified by:
        isEmpty in interface Geometry
      • toString

        public java.lang.String toString()
        Overrides:
        toString in class java.lang.Object
      • hasZ

        public boolean hasZ()
        Specified by:
        hasZ in interface Geometry