Packages

package data

Ordering
  1. Alphabetic
Visibility
  1. Public
  2. All

Type Members

  1. class Box extends AnyRef

    Rectangular box data type in Postgres represented by pairs of Points that are opposite corners of the box.

  2. class Circle extends AnyRef

    Circle data type in Postgres represented by a center Point and radius.

  3. class Interval extends AnyRef

    Postgres Interval is date and time based such as 120 years 3 months 332 days 20 hours 20 minutes 20.999999 seconds

  4. class Line extends AnyRef

    Line data type in Postgres represented by the linear equation Ax + By + C = 0, where A and B are not both zero.

  5. class LineSegment extends AnyRef

    Finite line segment data type in Postgres represented by pairs of Points that are the endpoints of the segment.

  6. class Path extends AnyRef

    Path data type in Postgres represented by lists of connected points.

    Path data type in Postgres represented by lists of connected points. Paths can be open, where the first and last points in the list are considered not connected, or closed, where the first and last points are considered connected.

  7. class Point extends AnyRef

    A Postgresql point.

  8. class Polygon extends AnyRef

    Polygon data type in Postgres represented by lists of points (the vertexes of the polygon).

    Polygon data type in Postgres represented by lists of points (the vertexes of the polygon). Polygons are very similar to closed paths, but are stored differently and have their own set of support routines.

Value Members

  1. object Box
  2. object Circle
  3. object Interval
  4. object Line
  5. object LineSegment
  6. object Path
  7. object Point
  8. object Polygon

Ungrouped