class JLongSpinner : JNumberSpinner<Long>
A JNumberSpinner for longs.
minValue
- the smallest number that may be represented
maxValue
- the largest number that may be represented
stepSize
- the default value to increment and decrement by
description
- the description to use in error messages
JLongSpinner(value: Long = 0L, minValue: Long = Long.MIN_VALUE, maxValue: Long = Long.MAX_VALUE, stepSize: Long = 1L, description: String? = null)
A JNumberSpinner for longs. |
val numberToT: (Number) -> Long
|
var maxValue: T
The maximal allowed value. |
|
var minValue: T
The minimal allowed value. |
open fun getValue(): T
Returns the current value of the spinner. |
|
open fun setValue(value: Any): Unit
Sets the value of the spinner. |
|
fun validateValue(): ValidationInfo?
Validates the current value. |