JLongSpinner

class JLongSpinner(value: Long = 0, minValue: Long = Long.MIN_VALUE, maxValue: Long = Long.MAX_VALUE, stepSize: Long = 1) : JNumberSpinner<Long> (source)

A JNumberSpinner for longs.

Parameters

value

the default value

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

Constructors

Link copied to clipboard
constructor(value: Long = 0, minValue: Long = Long.MIN_VALUE, maxValue: Long = Long.MAX_VALUE, stepSize: Long = 1)

Properties

Link copied to clipboard
open override val numberToT: (Number) -> Long

Transforms a Number into a T.