Class SpinnerDateModel
- All Implemented Interfaces:
-
Serializable,SpinnerModel
public class SpinnerDateModel extends AbstractSpinnerModel implements Serializable
SpinnerModel for sequences of Dates. The upper and lower bounds of the sequence are defined by properties called start and end and the size of the increase or decrease computed by the nextValue and previousValue methods is defined by a property called calendarField. The start and end properties can be null to indicate that the sequence has no lower or upper limit. The value of the calendarField property must be one of the java.util.Calendar constants that specify a field within a Calendar. The getNextValue and getPreviousValue methods change the date forward or backwards by this amount. For example, if calendarField is Calendar.DAY_OF_WEEK, then nextValue produces a Date that's 24 hours after the current value, and previousValue produces a Date that's 24 hours earlier.
The legal values for calendarField are:
-
Calendar.ERA -
Calendar.YEAR -
Calendar.MONTH -
Calendar.WEEK_OF_YEAR -
Calendar.WEEK_OF_MONTH -
Calendar.DAY_OF_MONTH -
Calendar.DAY_OF_YEAR -
Calendar.DAY_OF_WEEK -
Calendar.DAY_OF_WEEK_IN_MONTH -
Calendar.AM_PM -
Calendar.HOUR -
Calendar.HOUR_OF_DAY -
Calendar.MINUTE -
Calendar.SECOND -
Calendar.MILLISECOND
This model inherits a ChangeListener. The ChangeListeners are notified whenever the models value, calendarField, start, or end properties changes.
- Since:
- 1.4
- See Also:
Field Summary
Fields declared in class javax.swing.AbstractSpinnerModel
listenerList
Constructor Summary
| Constructor | Description |
|---|---|
SpinnerDateModel() |
Constructs a SpinnerDateModel whose initial value is the current date, calendarField is equal to Calendar.DAY_OF_MONTH, and for which there are no start/end limits. |
SpinnerDateModel |
Creates a SpinnerDateModel that represents a sequence of dates between start and end. |
Method Summary
| Modifier and Type | Method | Description |
|---|---|---|
int |
getCalendarField() |
Returns the Calendar field that is added to or subtracted from by the nextValue and previousValue methods. |
Date |
getDate() |
Returns the current element in this sequence of Dates. |
Comparable<Date> |
getEnd() |
Returns the last Date in the sequence. |
Object |
getNextValue() |
Returns the next Date in the sequence, or null if the next date is after end. |
Object |
getPreviousValue() |
Returns the previous Date in the sequence, or null if the previous date is before start. |
Comparable<Date> |
getStart() |
Returns the first Date in the sequence. |
Object |
getValue() |
Returns the current element in this sequence of Dates. |
void |
setCalendarField |
Changes the size of the date value change computed by the nextValue and previousValue methods. |
void |
setEnd |
Changes the upper limit for Dates in this sequence. |
void |
setStart |
Changes the lower limit for Dates in this sequence. |
void |
setValue |
Sets the current Date for this sequence. |
Methods declared in class javax.swing.AbstractSpinnerModel
addChangeListener, fireStateChanged, getChangeListeners, getListeners, removeChangeListener
Constructor Details
SpinnerDateModel
public SpinnerDateModel(Date value, Comparable<Date> start, Comparable<Date> end, int calendarField)
SpinnerDateModel that represents a sequence of dates between start and end. The nextValue and previousValue methods compute elements of the sequence by advancing or reversing the current date value by the calendarField time unit. For a precise description of what it means to increment or decrement a Calendar field, see the add method in java.util.Calendar. The start and end parameters can be null to indicate that the range doesn't have an upper or lower bound. If value or calendarField is null, or if both start and end are specified and minimum > maximum then an IllegalArgumentException is thrown. Similarly if (minimum <= value <= maximum) is false, an IllegalArgumentException is thrown.
- Parameters:
-
value- the current (nonnull) value of the model -
start- the first date in the sequence ornull -
end- the last date in the sequence ornull -
calendarField- one of-
Calendar.ERA -
Calendar.YEAR -
Calendar.MONTH -
Calendar.WEEK_OF_YEAR -
Calendar.WEEK_OF_MONTH -
Calendar.DAY_OF_MONTH -
Calendar.DAY_OF_YEAR -
Calendar.DAY_OF_WEEK -
Calendar.DAY_OF_WEEK_IN_MONTH -
Calendar.AM_PM -
Calendar.HOUR -
Calendar.HOUR_OF_DAY -
Calendar.MINUTE -
Calendar.SECOND -
Calendar.MILLISECOND
-
- Throws:
-
IllegalArgumentException- ifvalueorcalendarFieldarenull, ifcalendarFieldisn't valid, or if the following expression is false:(start <= value <= end). - See Also:
SpinnerDateModel
public SpinnerDateModel()
SpinnerDateModel whose initial value is the current date, calendarField is equal to Calendar.DAY_OF_MONTH, and for which there are no start/end limits.Method Details
setStart
public void setStart(Comparable<Date> start)
start is null, then there is no lower limit. No bounds checking is done here: the new start value may invalidate the (start <= value <= end) invariant enforced by the constructors. This is to simplify updating the model. Naturally one should ensure that the invariant is true before calling the nextValue, previousValue, or setValue methods. Typically this property is a Date however it's possible to use a Comparable with a compareTo method for Dates. For example start might be an instance of a class like this:
MyStartDate implements Comparable {
long t = 12345;
public int compareTo(Date d) {
return (t < d.getTime() ? -1 : (t == d.getTime() ? 0 : 1));
}
public int compareTo(Object o) {
return compareTo((Date)o);
}
}
Note that the above example will throw a ClassCastException if the Object passed to compareTo(Object) is not a Date. This method fires a ChangeEvent if the start has changed.
- Parameters:
-
start- defines the first date in the sequence - See Also:
getStart
public Comparable<Date> getStart()
Date in the sequence.- Returns:
- the value of the
startproperty - See Also:
setEnd
public void setEnd(Comparable<Date> end)
Dates in this sequence. If start is null, then there is no upper limit. No bounds checking is done here: the new start value may invalidate the (start <= value <= end) invariant enforced by the constructors. This is to simplify updating the model. Naturally, one should ensure that the invariant is true before calling the nextValue, previousValue, or setValue methods. Typically this property is a Date however it's possible to use Comparable with a compareTo method for Dates. See setStart for an example.
This method fires a ChangeEvent if the end has changed.
- Parameters:
-
end- defines the last date in the sequence - See Also:
getEnd
public Comparable<Date> getEnd()
Date in the sequence.- Returns:
- the value of the
endproperty - See Also:
setCalendarField
public void setCalendarField(int calendarField)
nextValue and previousValue methods. The calendarField parameter must be one of the Calendar field constants like Calendar.MONTH or Calendar.MINUTE. The nextValue and previousValue methods simply move the specified Calendar field forward or backward by one unit with the Calendar.add method. You should use this method with care as some UIs may set the calendarField before committing the edit to spin the field under the cursor. If you only want one field to spin you can subclass and ignore the setCalendarField calls.- Parameters:
-
calendarField- one of-
Calendar.ERA -
Calendar.YEAR -
Calendar.MONTH -
Calendar.WEEK_OF_YEAR -
Calendar.WEEK_OF_MONTH -
Calendar.DAY_OF_MONTH -
Calendar.DAY_OF_YEAR -
Calendar.DAY_OF_WEEK -
Calendar.DAY_OF_WEEK_IN_MONTH -
Calendar.AM_PM -
Calendar.HOUR -
Calendar.HOUR_OF_DAY -
Calendar.MINUTE -
Calendar.SECOND -
Calendar.MILLISECOND
This method fires a
ChangeEventif thecalendarFieldhas changed. -
- See Also:
getCalendarField
public int getCalendarField()
Calendar field that is added to or subtracted from by the nextValue and previousValue methods.- Returns:
- the value of the
calendarFieldproperty - See Also:
getNextValue
public Object getNextValue()
Date in the sequence, or null if the next date is after end.- Specified by:
-
getNextValuein interfaceSpinnerModel - Returns:
- the next
Datein the sequence, ornullif the next date is afterend. - See Also:
getPreviousValue
public Object getPreviousValue()
Date in the sequence, or null if the previous date is before start.- Specified by:
-
getPreviousValuein interfaceSpinnerModel - Returns:
- the previous
Datein the sequence, ornullif the previous date is beforestart - See Also:
getDate
public Date getDate()
Dates. This method is equivalent to (Date)getValue.- Returns:
- the
valueproperty - See Also:
getValue
public Object getValue()
Dates.- Specified by:
-
getValuein interfaceSpinnerModel - Returns:
- the
valueproperty - See Also:
setValue
public void setValue(Object value)
Date for this sequence. If value is null, an IllegalArgumentException is thrown. No bounds checking is done here: the new value may invalidate the (start <= value < end) invariant enforced by the constructors. Naturally, one should ensure that the (start <= value <= maximum) invariant is true before calling the nextValue, previousValue, or setValue methods. This method fires a ChangeEvent if the value has changed.
- Specified by:
-
setValuein interfaceSpinnerModel - Parameters:
-
value- the current (nonnull)Datefor this sequence - Throws:
-
IllegalArgumentException- if value isnullor not aDate - See Also:
© 1993, 2021, 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/17/docs/api/java.desktop/javax/swing/SpinnerDateModel.html