📄 datevalidator.java
字号:
*/
public Date validate(String value, Locale locale) {
return (Date)parse(value, (String)null, locale, (TimeZone)null);
}
/**
* <p>Validate/convert a <code>Date</code> using the specified
* <code>Locale</code> and <code>TimeZone</code>.
*
* @param value The value validation is being performed on.
* @param locale The locale to use for the date format, system default if null.
* @param timeZone The Time Zone used to parse the date, system default if null.
* @return The parsed <code>Date</code> if valid or <code>null</code> if invalid.
*/
public Date validate(String value, Locale locale, TimeZone timeZone) {
return (Date)parse(value, (String)null, locale, timeZone);
}
/**
* <p>Validate/convert a <code>Date</code> using the specified pattern
* and <code>Locale</code> and the default <code>TimeZone</code>.
*
* @param value The value validation is being performed on.
* @param pattern The pattern used to validate the value against, or the
* default for the <code>Locale</code> if <code>null</code>.
* @param locale The locale to use for the date format, system default if null.
* @return The parsed <code>Date</code> if valid or <code>null</code> if invalid.
*/
public Date validate(String value, String pattern, Locale locale) {
return (Date)parse(value, pattern, locale, (TimeZone)null);
}
/**
* <p>Validate/convert a <code>Date</code> using the specified
* pattern, and <code>Locale</code> and <code>TimeZone</code>.
*
* @param value The value validation is being performed on.
* @param pattern The pattern used to validate the value against, or the
* default for the <code>Locale</code> if <code>null</code>.
* @param locale The locale to use for the date format, system default if null.
* @param timeZone The Time Zone used to parse the date, system default if null.
* @return The parsed <code>Date</code> if valid or <code>null</code> if invalid.
*/
public Date validate(String value, String pattern, Locale locale, TimeZone timeZone) {
return (Date)parse(value, pattern, locale, timeZone);
}
/**
* <p>Compare Dates (day, month and year - not time).</p>
*
* @param value The <code>Calendar</code> value to check.
* @param compare The <code>Calendar</code> to compare the value to.
* @param timeZone The Time Zone used to compare the dates, system default if null.
* @return Zero if the dates are equal, -1 if first
* date is less than the seconds and +1 if the first
* date is greater than.
*/
public int compareDates(Date value, Date compare, TimeZone timeZone) {
Calendar calendarValue = getCalendar(value, timeZone);
Calendar calendarCompare = getCalendar(compare, timeZone);
return compare(calendarValue, calendarCompare, Calendar.DATE);
}
/**
* <p>Compare Weeks (week and year).</p>
*
* @param value The <code>Date</code> value to check.
* @param compare The <code>Date</code> to compare the value to.
* @param timeZone The Time Zone used to compare the dates, system default if null.
* @return Zero if the weeks are equal, -1 if first
* parameter's week is less than the seconds and +1 if the first
* parameter's week is greater than.
*/
public int compareWeeks(Date value, Date compare, TimeZone timeZone) {
Calendar calendarValue = getCalendar(value, timeZone);
Calendar calendarCompare = getCalendar(compare, timeZone);
return compare(calendarValue, calendarCompare, Calendar.WEEK_OF_YEAR);
}
/**
* <p>Compare Months (month and year).</p>
*
* @param value The <code>Date</code> value to check.
* @param compare The <code>Date</code> to compare the value to.
* @param timeZone The Time Zone used to compare the dates, system default if null.
* @return Zero if the months are equal, -1 if first
* parameter's month is less than the seconds and +1 if the first
* parameter's month is greater than.
*/
public int compareMonths(Date value, Date compare, TimeZone timeZone) {
Calendar calendarValue = getCalendar(value, timeZone);
Calendar calendarCompare = getCalendar(compare, timeZone);
return compare(calendarValue, calendarCompare, Calendar.MONTH);
}
/**
* <p>Compare Quarters (quarter and year).</p>
*
* @param value The <code>Date</code> value to check.
* @param compare The <code>Date</code> to compare the value to.
* @param timeZone The Time Zone used to compare the dates, system default if null.
* @return Zero if the months are equal, -1 if first
* parameter's quarter is less than the seconds and +1 if the first
* parameter's quarter is greater than.
*/
public int compareQuarters(Date value, Date compare, TimeZone timeZone) {
return compareQuarters(value, compare, timeZone, 1);
}
/**
* <p>Compare Quarters (quarter and year).</p>
*
* @param value The <code>Date</code> value to check.
* @param compare The <code>Date</code> to compare the value to.
* @param timeZone The Time Zone used to compare the dates, system default if null.
* @param monthOfFirstQuarter The month that the first quarter starts.
* @return Zero if the quarters are equal, -1 if first
* parameter's quarter is less than the seconds and +1 if the first
* parameter's quarter is greater than.
*/
public int compareQuarters(Date value, Date compare, TimeZone timeZone, int monthOfFirstQuarter) {
Calendar calendarValue = getCalendar(value, timeZone);
Calendar calendarCompare = getCalendar(compare, timeZone);
return super.compareQuarters(calendarValue, calendarCompare, monthOfFirstQuarter);
}
/**
* <p>Compare Years.</p>
*
* @param value The <code>Date</code> value to check.
* @param compare The <code>Date</code> to compare the value to.
* @param timeZone The Time Zone used to compare the dates, system default if null.
* @return Zero if the years are equal, -1 if first
* parameter's year is less than the seconds and +1 if the first
* parameter's year is greater than.
*/
public int compareYears(Date value, Date compare, TimeZone timeZone) {
Calendar calendarValue = getCalendar(value, timeZone);
Calendar calendarCompare = getCalendar(compare, timeZone);
return compare(calendarValue, calendarCompare, Calendar.YEAR);
}
/**
* <p>Returns the parsed <code>Date</code> unchanged.</p>
*
* @param value The parsed <code>Date</code> object created.
* @param formatter The Format used to parse the value with.
* @return The parsed value converted to a <code>Calendar</code>.
*/
protected Object processParsedValue(Object value, Format formatter) {
return value;
}
/**
* <p>Convert a <code>Date</code> to a <code>Calendar</code>.</p>
*
* @param value The date value to be converted.
* @return The converted <code>Calendar</code>.
*/
private Calendar getCalendar(Date value, TimeZone timeZone) {
Calendar calendar = null;
if (timeZone != null) {
calendar = Calendar.getInstance(timeZone);
} else {
calendar = Calendar.getInstance();
}
calendar.setTime(value);
return calendar;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -