Class Line

java.lang.Object
io.vertx.pgclient.data.Line

public class Line extends Object
Line data type in Postgres represented by the linear equation Ax + By + C = 0, where A and B are not both zero.
  • Constructor Details

    • Line

      public Line(double a, double b, double c)
  • Method Details

    • getA

      public double getA()
    • setA

      public void setA(double a)
    • getB

      public double getB()
    • setB

      public void setB(double b)
    • getC

      public double getC()
    • setC

      public void setC(double c)
    • equals

      public boolean equals(Object o)
      Overrides:
      equals in class Object
    • hashCode

      public int hashCode()
      Overrides:
      hashCode in class Object
    • toString

      public String toString()
      Overrides:
      toString in class Object