vertx / io.vertx.kotlin.pgclient.data

Package io.vertx.kotlin.pgclient.data

Functions

boxOf

fun boxOf(lowerLeftCorner: Point? = null, upperRightCorner: Point? = null): Box

A function providing a DSL for building io.vertx.pgclient.data.Box objects.

circleOf

fun circleOf(centerPoint: Point? = null, radius: Double? = null): Circle

A function providing a DSL for building io.vertx.pgclient.data.Circle objects.

intervalOf

fun intervalOf(days: Int? = null, hours: Int? = null, microseconds: Int? = null, minutes: Int? = null, months: Int? = null, seconds: Int? = null, years: Int? = null): Interval

A function providing a DSL for building io.vertx.pgclient.data.Interval objects.

lineOf

fun lineOf(a: Double? = null, b: Double? = null, c: Double? = null): Line

A function providing a DSL for building io.vertx.pgclient.data.Line objects.

lineSegmentOf

fun lineSegmentOf(p1: Point? = null, p2: Point? = null): LineSegment

A function providing a DSL for building io.vertx.pgclient.data.LineSegment objects.

pathOf

fun pathOf(open: Boolean? = null, points: Iterable<Point>? = null): Path

A function providing a DSL for building io.vertx.pgclient.data.Path objects.

pointOf

fun pointOf(x: Double? = null, y: Double? = null): Point

A function providing a DSL for building io.vertx.pgclient.data.Point objects.

polygonOf

fun polygonOf(points: Iterable<Point>? = null): Polygon

A function providing a DSL for building io.vertx.pgclient.data.Polygon objects.