Uses of Class
io.vertx.pgclient.data.Point
-
Packages that use Point Package Description io.vertx.pgclient.data -
-
Uses of Point in io.vertx.pgclient.data
Methods in io.vertx.pgclient.data that return Point Modifier and Type Method Description Point
Circle. getCenterPoint()
Point
Box. getLowerLeftCorner()
Point
LineSegment. getP1()
Point
LineSegment. getP2()
Point
Box. getUpperRightCorner()
Point
Point. setX(double x)
Point
Point. setY(double y)
Methods in io.vertx.pgclient.data that return types with arguments of type Point Modifier and Type Method Description List<Point>
Path. getPoints()
List<Point>
Polygon. getPoints()
Methods in io.vertx.pgclient.data with parameters of type Point Modifier and Type Method Description Path
Path. addPoint(Point point)
Polygon
Polygon. addPoint(Point point)
void
Circle. setCenterPoint(Point centerPoint)
void
Box. setLowerLeftCorner(Point lowerLeftCorner)
void
LineSegment. setP1(Point p1)
void
LineSegment. setP2(Point p2)
void
Box. setUpperRightCorner(Point upperRightCorner)
Method parameters in io.vertx.pgclient.data with type arguments of type Point Modifier and Type Method Description void
Path. setPoints(List<Point> points)
void
Polygon. setPoints(List<Point> points)
Constructors in io.vertx.pgclient.data with parameters of type Point Constructor Description Box(Point upperRightCorner, Point lowerLeftCorner)
Circle(Point centerPoint, double radius)
LineSegment(Point p1, Point p2)
Constructor parameters in io.vertx.pgclient.data with type arguments of type Point Constructor Description Path(boolean isOpen, List<Point> points)
Polygon(List<Point> points)
-