Functions

Link copied to clipboard
open override fun bigDecimal(name: String): PathVariable<BigDecimal>

Creates a required PathVariable expecting a BigDecimal value.

Link copied to clipboard
open override fun bigInteger(name: String): PathVariable<BigInteger>

Creates a required PathVariable expecting a BigInteger value.

Link copied to clipboard
open override fun boolean(name: String): PathVariable<Boolean>

Creates a required PathVariable expecting a boolean value.

Link copied to clipboard
open override fun byte(name: String): PathVariable<Byte>

Creates a required PathVariable expecting a byte value.

Link copied to clipboard
open override fun double(name: String): PathVariable<Double>

Creates a required PathVariable expecting a double value.

Link copied to clipboard
open override fun float(name: String): PathVariable<Float>

Creates a required PathVariable expecting a float value.

Link copied to clipboard
open override fun int(name: String): PathVariable<Int>

Creates a required PathVariable expecting an integer value.

Link copied to clipboard
open override fun long(name: String): PathVariable<Long>

Creates a required PathVariable expecting a long value.

Link copied to clipboard
open override fun short(name: String): PathVariable<Short>

Creates a required PathVariable expecting a short value.

Link copied to clipboard
open override fun string(name: String): PathVariable<String>

Creates a required PathVariable expecting a String value.

Link copied to clipboard
open override fun unit(name: String): PathVariable<Unit>

Creates a required PathVariable expecting a Unit value.

Link copied to clipboard
open override fun uuid(name: String): PathVariable<UUID>

Creates a required PathVariable expecting a UUID value.