Class Point

  • Direct Known Subclasses:
    Interval

    public class Point
    extends java.lang.Object
    Represents value data for X/Y chart views.
    • Constructor Summary

      Constructors 
      Constructor Description
      Point()  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      float getX()  
      float getY()  
      void setX​(float xValue)
      Set the X-position data.
      void setY​(float yValue)
      Set the Y-position data.
      • Methods inherited from class java.lang.Object

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

      • Point

        public Point()
    • Method Detail

      • getX

        public float getX()
        Returns:
        The X-position data.
      • setX

        public void setX​(float xValue)
        Set the X-position data.
        Parameters:
        xValue - The X-position value.
      • getY

        public float getY()
        Returns:
        The Y-position data.
      • setY

        public void setY​(float yValue)
        Set the Y-position data.
        Parameters:
        yValue - The Y-position value.