类 Point

java.lang.Object
org.anyline.entity.geometry.Geometry
org.anyline.entity.geometry.Point

public class Point extends Geometry
  • 构造器详细资料

    • Point

      public Point()
    • Point

      public Point(Double x, Double y)
    • Point

      public Point(Integer[] xy)
    • Point

      public Point(int[] xy)
    • Point

      public Point(Double[] xy)
    • Point

      public Point(double[] xy)
    • Point

      public Point(int x, int y)
    • Point

      public Point(Integer x, Integer y)
  • 方法详细资料

    • doubles

      public double[] doubles()
    • x

      public Double x()
    • x

      public void x(Double x)
    • y

      public Double y()
    • y

      public void y(Double y)
    • getX

      public Double getX()
    • getY

      public Double getY()
    • toString

      public String toString()
      指定者:
      toString 在类中 Geometry
    • toString

      public String toString(boolean tag)
      指定者:
      toString 在类中 Geometry
    • sql

      public String sql(boolean tag, boolean bracket)
      sql格式
      指定者:
      sql 在类中 Geometry
      参数:
      tag - 是否包含tag
      false:(120 36)
      true: Point(120 36)
      bracket - 是否包含()
      返回:
      String
    • sql

      public String sql()
      指定者:
      sql 在类中 Geometry