Class/Object

scalafx.scene.control.SpinnerValueFactory

ListSpinnerValueFactory

Related Docs: object ListSpinnerValueFactory | package SpinnerValueFactory

Permalink

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
Type Hierarchy
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ListSpinnerValueFactory
  2. SpinnerValueFactory
  3. SFXDelegate
  4. AnyRef
  5. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

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

    Permalink

    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])

    Permalink

Value Members

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

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

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

    Permalink
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  5. def clone(): AnyRef

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

    Permalink

    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
  7. def converter_=(newValue: StringConverter[T]): Unit

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

    Permalink

    JavaFX object to be wrapped.

    JavaFX object to be wrapped.

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

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

    Permalink

    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
  11. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  12. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  13. def hashCode(): Int

    Permalink

    returns

    The delegate hashcode

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

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

    Permalink

    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.

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

    Permalink
  17. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  18. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  19. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  20. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  21. def toString(): String

    Permalink

    returns

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

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

    Permalink

    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
  23. def value_=(newValue: T): Unit

    Permalink
    Definition Classes
    SpinnerValueFactory
  24. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  25. final def wait(arg0: Long, arg1: Int): Unit

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

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

    Permalink

    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
  28. def wrapAround_=(value: Boolean): Unit

    Permalink
    Definition Classes
    SpinnerValueFactory

Inherited from SpinnerValueFactory[T]

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

Inherited from AnyRef

Inherited from Any

Ungrouped