Module javafx.controls
Package javafx.scene.control
Class SpinnerValueFactory.ListSpinnerValueFactory<T>
java.lang.Object
javafx.scene.control.SpinnerValueFactory<T>
javafx.scene.control.SpinnerValueFactory.ListSpinnerValueFactory<T>
- Type Parameters:
T
- The type of the elements in theList
.
- Enclosing class:
- SpinnerValueFactory<T>
public static class SpinnerValueFactory.ListSpinnerValueFactory<T> extends SpinnerValueFactory<T>
A
SpinnerValueFactory
implementation designed to iterate through
a list of values.
Note that the default converter
is implemented
simply as shown below, which may be adequate in many cases, but it is important
for users to ensure that this suits their needs (and adjust when necessary):
setConverter(new StringConverter<T>() { @Override public String toString(T value) { if (value == null) { return ""; } return value.toString(); } @Override public T fromString(String string) { return (T) string; } });
- Since:
- JavaFX 8u40
-
Property Summary
Properties Type Property Description ObjectProperty<ObservableList<T>>
items
The underlying data model for the ListView.Properties declared in class javafx.scene.control.SpinnerValueFactory
converter, value, wrapAround
-
Nested Class Summary
Nested classes/interfaces declared in class javafx.scene.control.SpinnerValueFactory
SpinnerValueFactory.DoubleSpinnerValueFactory, SpinnerValueFactory.IntegerSpinnerValueFactory, SpinnerValueFactory.ListSpinnerValueFactory<T>
-
Constructor Summary
Constructors Constructor Description ListSpinnerValueFactory(ObservableList<T> items)
Creates a new instance of the ListSpinnerValueFactory with the given list used as the list to step through. -
Method Summary
Modifier and Type Method Description ObservableList<T>
getItems()
Returns anObservableList
that contains the items currently able to be iterated through by the user.ObjectProperty<ObservableList<T>>
itemsProperty()
The underlying data model for the ListView.void
setItems(ObservableList<T> value)
Sets the underlying data model for the ListSpinnerValueFactory.Methods declared in class javafx.scene.control.SpinnerValueFactory
converterProperty, decrement, getConverter, getValue, increment, isWrapAround, setConverter, setValue, setWrapAround, valueProperty, wrapAroundProperty
-
Property Details
-
items
The underlying data model for the ListView. Note that it has a generic type that must match the type of the ListView itself.- See Also:
getItems()
,setItems(ObservableList)
-
-
Constructor Details
-
ListSpinnerValueFactory
Creates a new instance of the ListSpinnerValueFactory with the given list used as the list to step through.- Parameters:
items
- The list of items to step through with the Spinner.
-
-
Method Details
-
setItems
Sets the underlying data model for the ListSpinnerValueFactory. Note that it has a generic type that must match the type of the Spinner itself.- Parameters:
value
- the list of items
-
getItems
Returns anObservableList
that contains the items currently able to be iterated through by the user. This may be null ifsetItems(javafx.collections.ObservableList)
has previously been called, however, by default it is an empty ObservableList.- Returns:
- An ObservableList containing the items to be shown to the user, or null if the items have previously been set to null.
-
itemsProperty
The underlying data model for the ListView. Note that it has a generic type that must match the type of the ListView itself.- See Also:
getItems()
,setItems(ObservableList)
-