IntegerOption

data class IntegerOption(val value: Int?, val displayName: String)

Class that represents a combination of an integer value and a name suitable for display

Parameters

value

a integer value.

displayName

a name suitable for display of the value.

Constructors

Link copied to clipboard
constructor(value: Int?, displayName: String)

Properties

Link copied to clipboard
Link copied to clipboard
val value: Int?

Functions

Link copied to clipboard
open override fun toString(): String

Show only the displayName in the toString function.