Class Point


  • public class Point
    extends java.lang.Object
    Represents a point with integer coordinates in 2D space.
    • Constructor Summary

      Constructors 
      Constructor Description
      Point​(int x, int y)
      Constructs a point with given coordinates.
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      int getX()
      Returns the x-coordinate of the point.
      int getY()
      Returns the y-coordinate of the point.
      void setX​(int x)
      Sets the x-coordinate of the point.
      void setY​(int y)
      Sets the y-coordinate of the point.
      • Methods inherited from class java.lang.Object

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

      • Point

        public Point​(int x,
                     int y)
        Constructs a point with given coordinates.
        Parameters:
        x - x-coordinate
        y - y-coordinate
    • Method Detail

      • getY

        public int getY()
        Returns the y-coordinate of the point.
        Returns:
        y-coordinate
      • setY

        public void setY​(int y)
        Sets the y-coordinate of the point.
        Parameters:
        y - y-coordinate
      • getX

        public int getX()
        Returns the x-coordinate of the point.
        Returns:
        x-coordinate
      • setX

        public void setX​(int x)
        Sets the x-coordinate of the point.
        Parameters:
        x - x-coordinate