scalafx.scene.control.SpinnerValueFactory

ListSpinnerValueFactory

class ListSpinnerValueFactory[T] extends SpinnerValueFactory[T] with SFXDelegate[javafx.scene.control.SpinnerValueFactory.ListSpinnerValueFactory[T]]

A SpinnerValueFactory implementation designed to iterate through a list of values.

T

The type of the elements in the List.

Source
SpinnerValueFactory.scala
Linear Supertypes
SpinnerValueFactory[T], SFXDelegate[javafx.scene.control.SpinnerValueFactory.ListSpinnerValueFactory[T]], AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. ListSpinnerValueFactory
  2. SpinnerValueFactory
  3. SFXDelegate
  4. AnyRef
  5. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Instance Constructors

  1. new ListSpinnerValueFactory(items: ObservableBuffer[T])

    Creates a new instance of the ListSpinnerValueFactory with the given list used as the list to step through.

    Creates a new instance of the ListSpinnerValueFactory with the given list used as the list to step through.

    items

    The list of items to step through with the Spinner.

  2. new ListSpinnerValueFactory(delegate: javafx.scene.control.SpinnerValueFactory.ListSpinnerValueFactory[T])

Value Members

  1. final def !=(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  2. final def !=(arg0: Any): Boolean

    Definition Classes
    Any
  3. final def ##(): Int

    Definition Classes
    AnyRef → Any
  4. final def ==(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  5. final def ==(arg0: Any): Boolean

    Definition Classes
    Any
  6. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  7. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @HotSpotIntrinsicCandidate() @throws( ... )
  8. def converter: ObjectProperty[StringConverter[T]]

    Converts the user-typed input (when the Spinner is editable) to an object of type T, such that the input may be retrieved via the value property.

    Converts the user-typed input (when the Spinner is editable) to an object of type T, such that the input may be retrieved via the value property.

    Definition Classes
    SpinnerValueFactory
  9. def converter_=(newValue: StringConverter[T]): Unit

    Definition Classes
    SpinnerValueFactory
  10. val delegate: javafx.scene.control.SpinnerValueFactory.ListSpinnerValueFactory[T]

    JavaFX object to be wrapped.

    JavaFX object to be wrapped.

    Definition Classes
    ListSpinnerValueFactorySpinnerValueFactorySFXDelegate
  11. final def eq(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  12. def equals(ref: Any): Boolean

    Verifies if a object is equals to this delegate.

    Verifies if a object is equals to this delegate.

    ref

    Object to be compared.

    returns

    if the other object is equals to this delegate or not.

    Definition Classes
    SFXDelegate → AnyRef → Any
  13. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
    Annotations
    @HotSpotIntrinsicCandidate()
  14. def hashCode(): Int

    returns

    The delegate hashcode

    Definition Classes
    SFXDelegate → AnyRef → Any
  15. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  16. def items: ObjectProperty[ObservableList[T]]

    The underlying data model for the ListView.

    The underlying data model for the ListView. Note that it has a generic type that must match the type of the ListView itself.

  17. def items_=(v: ObservableBuffer[T]): Unit

  18. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  19. final def notify(): Unit

    Definition Classes
    AnyRef
    Annotations
    @HotSpotIntrinsicCandidate()
  20. final def notifyAll(): Unit

    Definition Classes
    AnyRef
    Annotations
    @HotSpotIntrinsicCandidate()
  21. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  22. def toString(): String

    returns

    Returns the original delegate's toString() adding a [SFX] prefix.

    Definition Classes
    SFXDelegate → AnyRef → Any
  23. def value: ObjectProperty[T]

    Represents the current value of the SpinnerValueFactory, or null if no value has been set.

    Represents the current value of the SpinnerValueFactory, or null if no value has been set.

    Definition Classes
    SpinnerValueFactory
  24. def value_=(newValue: T): Unit

    Definition Classes
    SpinnerValueFactory
  25. final def wait(arg0: Long, arg1: Int): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  26. final def wait(arg0: Long): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  27. final def wait(): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  28. def wrapAround: BooleanProperty

    The wrapAround property is used to specify whether the value factory should be circular.

    The wrapAround property is used to specify whether the value factory should be circular. For example, should an integer-based value model increment from the maximum value back to the minimum value (and vice versa).

    Definition Classes
    SpinnerValueFactory
  29. def wrapAround_=(value: Boolean): Unit

    Definition Classes
    SpinnerValueFactory

Deprecated Value Members

  1. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @Deprecated @deprecated @throws( classOf[java.lang.Throwable] )
    Deprecated

    (Since version ) see corresponding Javadoc for more information.

Inherited from SpinnerValueFactory[T]

Inherited from SFXDelegate[javafx.scene.control.SpinnerValueFactory.ListSpinnerValueFactory[T]]

Inherited from AnyRef

Inherited from Any

Ungrouped