Package-level declarations

Types

Link copied to clipboard
typealias BooleanToString = (Boolean) -> String

Method to convert a Boolean to its String representation.

Link copied to clipboard
typealias ByteToString = (Byte) -> String

Method to convert a Byte to its String representation.

Link copied to clipboard
typealias DoubleToString = (Double) -> String

Method to convert a Double to its String representation.

Link copied to clipboard
class EnumDelegateProvider<E : Enum<E>>(name: String?, toEnum: (String) -> E?, toString: (E) -> String = { it.toString() }) : NamedValuePropertyProvider<List<E>?>
Link copied to clipboard
typealias FloatToString = (Float) -> String

Method to convert a Float to its String representation.

Link copied to clipboard
typealias IntToString = (Int) -> String

Method to convert a Int to its String representation.

Link copied to clipboard
typealias LongToString = (Long) -> String

Method to convert a Long to its String representation.

Link copied to clipboard
typealias ShortToString = (Short) -> String

Method to convert a Short to its String representation.

Link copied to clipboard

Method to convert a String (query parameter's value) to its String representation.

Link copied to clipboard
typealias StringToBoolean = (String) -> Boolean?

Method to convert a String to its Boolean representation.

Link copied to clipboard
typealias StringToByte = (String) -> Byte?

Method to convert a String to its Byte representation.

Link copied to clipboard
typealias StringToDouble = (String) -> Double?

Method to convert a String to its Double representation.

Link copied to clipboard
typealias StringToFloat = (String) -> Float?

Method to convert a String to its Float representation.

Link copied to clipboard
typealias StringToInt = (String) -> Int?

Method to convert a String to its Int representation.

Link copied to clipboard
typealias StringToLong = (String) -> Long?

Method to convert a String to its Long representation.

Link copied to clipboard
typealias StringToShort = (String) -> Short?

Method to convert a String to its Short representation.

Link copied to clipboard

Method to convert a String to its String (query parameter's value) representation.

Properties