Class SpinnerListModel
- java.lang.Object
-
- javax.swing.AbstractSpinnerModel
-
- javax.swing.SpinnerListModel
- All Implemented Interfaces:
-
Serializable,SpinnerModel
public class SpinnerListModel extends AbstractSpinnerModel implements Serializable
A simple implementation of SpinnerModel whose values are defined by an array or a List. For example to create a model defined by an array of the names of the days of the week:
String[] days = new DateFormatSymbols().getWeekdays(); SpinnerModel model = new SpinnerListModel(Arrays.asList(days).subList(1, 8));This class only stores a reference to the array or
List so if an element of the underlying sequence changes, it's up to the application to notify the ChangeListeners by calling fireStateChanged.
This model inherits a ChangeListener. The ChangeListeners are notified whenever the model's value or list properties changes.
- Since:
- 1.4
- See Also:
-
JSpinner,SpinnerModel,AbstractSpinnerModel,SpinnerNumberModel,SpinnerDateModel, Serialized Form
Fields
Fields declared in class javax.swing.AbstractSpinnerModel
listenerList Constructors
| Constructor | Description |
|---|---|
SpinnerListModel() | Constructs an effectively empty |
SpinnerListModel(Object[] values) | Constructs a |
SpinnerListModel(List<?> values) | Constructs a |
Methods
| Modifier and Type | Method | Description |
|---|---|---|
List<?> | getList() | Returns the |
Object | getNextValue() | Returns the next legal value of the underlying sequence or |
Object | getPreviousValue() | Returns the previous element of the underlying sequence or |
Object | getValue() | Returns the current element of the sequence. |
void | setList(List<?> list) | Changes the list that defines this sequence and resets the index of the models |
void | setValue(Object elt) | Changes the current element of the sequence and notifies |
Methods declared in class javax.swing.AbstractSpinnerModel
addChangeListener, fireStateChanged, getChangeListeners, getListeners, removeChangeListener Methods declared in class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait Constructors
SpinnerListModel
public SpinnerListModel(List<?> values)
Constructs a SpinnerModel whose sequence of values is defined by the specified List. The initial value (current element) of the model will be values.get(0). If values is null or has zero size, an IllegalArugmentException is thrown.
- Parameters:
-
values- the sequence this model represents - Throws:
-
IllegalArgumentException- ifvaluesisnullor zero size
SpinnerListModel
public SpinnerListModel(Object[] values)
Constructs a SpinnerModel whose sequence of values is defined by the specified array. The initial value of the model will be values[0]. If values is null or has zero length, an IllegalArgumentException is thrown.
- Parameters:
-
values- the sequence this model represents - Throws:
-
IllegalArgumentException- ifvaluesisnullor zero length
SpinnerListModel
public SpinnerListModel()
Constructs an effectively empty SpinnerListModel. The model's list will contain a single "empty" string element.
Methods
getList
public List<?> getList()
Returns the List that defines the sequence for this model.
- Returns:
- the value of the
listproperty - See Also:
setList(java.util.List<?>)
setList
public void setList(List<?> list)
Changes the list that defines this sequence and resets the index of the models value to zero. Note that list is not copied, the model just stores a reference to it.
This method fires a ChangeEvent if list is not equal to the current list.
- Parameters:
-
list- the sequence that this model represents - Throws:
-
IllegalArgumentException- iflistisnullor zero length - See Also:
getList()
getValue
public Object getValue()
Returns the current element of the sequence.
- Specified by:
-
getValuein interfaceSpinnerModel - Returns:
- the
valueproperty - See Also:
-
SpinnerModel.getValue(),setValue(java.lang.Object)
setValue
public void setValue(Object elt)
Changes the current element of the sequence and notifies ChangeListeners. If the specified value is not equal to an element of the underlying sequence then an IllegalArgumentException is thrown. In the following example the setValue call would cause an exception to be thrown:
String[] values = {"one", "two", "free", "four"};
SpinnerModel model = new SpinnerListModel(values);
model.setValue("TWO"); - Specified by:
-
setValuein interfaceSpinnerModel - Parameters:
-
elt- the sequence element that will be model's current value - Throws:
-
IllegalArgumentException- if the specified value isn't allowed - See Also:
-
SpinnerModel.setValue(java.lang.Object),getValue()
getNextValue
public Object getNextValue()
Returns the next legal value of the underlying sequence or null if value is already the last element.
- Specified by:
-
getNextValuein interfaceSpinnerModel - Returns:
- the next legal value of the underlying sequence or
nullif value is already the last element - See Also:
-
SpinnerModel.getNextValue(),getPreviousValue()
getPreviousValue
public Object getPreviousValue()
Returns the previous element of the underlying sequence or null if value is already the first element.
- Specified by:
-
getPreviousValuein interfaceSpinnerModel - Returns:
- the previous element of the underlying sequence or
nullif value is already the first element - See Also:
-
SpinnerModel.getPreviousValue(),getNextValue()
© 1993, 2020, Oracle and/or its affiliates. All rights reserved.
Documentation extracted from Debian's OpenJDK Development Kit package.
Licensed under the GNU General Public License, version 2, with the Classpath Exception.
Various third party code in OpenJDK is licensed under different licenses (see Debian package).
Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.
https://docs.oracle.com/en/java/javase/11/docs/api/java.desktop/javax/swing/SpinnerListModel.html