public class DateTimeTools
extends java.lang.Object
Date
and related objects.Modifier and Type | Field and Description |
---|---|
static java.lang.String |
DATEFORMAT_PATTERN |
static java.math.BigDecimal |
HOURS_PER_DAY |
static java.math.BigDecimal |
MILLISECONDS_PER_DAY |
static java.math.BigDecimal |
MILLISECONDS_PER_HOUR |
static java.math.BigDecimal |
MILLISECONDS_PER_MINUTE |
static java.math.BigDecimal |
MILLISECONDS_PER_SECOND |
static java.math.BigDecimal |
MINUTES_PER_DAY |
static java.math.BigDecimal |
MINUTES_PER_HOUR |
static java.math.BigDecimal |
SECONDS_PER_DAY |
static java.math.BigDecimal |
SECONDS_PER_HOUR |
static java.math.BigDecimal |
SECONDS_PER_MINUTE |
static java.lang.String |
STRIP_DATE |
static java.lang.String |
STRIP_DAYS |
static java.lang.String |
STRIP_HOURS |
static java.lang.String |
STRIP_MILLISECONDS |
static java.lang.String |
STRIP_MINUTES |
static java.lang.String |
STRIP_MONTHS |
static java.lang.String |
STRIP_SECONDS |
static java.lang.String |
STRIP_TIME |
static java.lang.String |
STRIP_YEARS |
Modifier and Type | Method and Description |
---|---|
static java.util.Date |
addDay(java.util.Date d)
add 1 day to a given date
simply a wrapper method for addToDate(d, Calendar.DAY_OF_MONTH, 1)
|
static java.util.Date |
addDays(java.util.Date d,
int days)
adds a given number of days to a given date
simply a wrapper method for addToDate(d, Calendar.DAY_OF_MONTH, days)
|
static java.util.Date |
addHour(java.util.Date d)
add 1 hour to a given date
simply a wrapper method for addToDate(d, Calendar.HOUR, 1)
|
static java.util.Date |
addHours(java.util.Date d,
int hours)
adds a given number of hours to a given date
simply a wrapper method for addToDate(d, Calendar.HOUR, hours)
|
static java.util.Date |
addMillisecond(java.util.Date d)
add 1 millisecond to a given date
simply a wrapper method for addToDate(d, Calendar.MILLISECOND, 1)
|
static java.util.Date |
addMilliseconds(java.util.Date d,
int ms)
adds a given number of milliseconds to a given date
simply a wrapper method for addToDate(d, Calendar.MILLISECOND, ms)
|
static java.util.Date |
addMinute(java.util.Date d)
add 1 minute to a given date
simply a wrapper method for addToDate(d, Calendar.MINUTE, 1)
|
static java.util.Date |
addMinutes(java.util.Date d,
int minutes)
adds a given number of minutes to a given date
simply a wrapper method for addToDate(d, Calendar.MINUTE, minutes)
|
static java.util.Date |
addMonth(java.util.Date d)
add 1 month to a given date
simply a wrapper method for addToDate(d, Calendar.MONTH, 1)
|
static java.util.Date |
addMonths(java.util.Date d,
int months)
adds a given number of months to a given date
simply a wrapper method for addToDate(d, Calendar.MONTH, months)
|
static java.util.Date |
addSecond(java.util.Date d)
add 1 second to a given date
simply a wrapper method for addToDate(d, Calendar.SECOND, 1)
|
static java.util.Date |
addSeconds(java.util.Date d,
int seconds)
adds a given number of seconds to a given date
simply a wrapper method for addToDate(d, Calendar.SECOND, seconds)
|
static java.util.Date |
addToDate(java.util.Date d,
int arg0,
int toAdd)
adds a given number of Date-Parts (Seconds, Minutes, Days, Years,...) to a given date
the type to add (arg0) must be a field of java.util.Calendar, i.e.:
Calendar.YEAR, Calendar.MONTH, Calendar.DAY_OF_MONTH, Calendar.HOUR, ...
|
static java.util.Date |
addToDate(java.util.Date d,
java.util.concurrent.TimeUnit unit,
int toAdd)
adds the given amount of the given TimeUnit to the given date
values given with unit microseconds or nanoseconds are being converted to milliseconds first
|
static java.util.Date |
addWeek(java.util.Date d)
add 1 week to a given date
simply a wrapper method for addToDate(d, Calendar.WEEK_OF_YEAR, 1)
|
static java.util.Date |
addWeeks(java.util.Date d,
int weeks)
adds a given number of weeks to a given date
simply a wrapper method for addToDate(d, Calendar.WEEK_OF_YEAR, weeks)
|
static java.util.Date |
addYear(java.util.Date d)
add 1 year to a given date
simply a wrapper method for addToDate(d, Calendar.YEAR, 1)
|
static java.util.Date |
addYears(java.util.Date d,
int years)
adds a given number of years to a given date
simply a wrapper method for addToDate(d, Calendar.YEAR, years)
|
static java.util.Date |
adjustTimeToMinimum(java.util.Date _date1,
java.util.Date _date2) |
static void |
checkTimespan(TimespanI _ts)
Checks the given
TimespanI for errors. |
static int |
countDays(java.util.Date d1,
java.util.Date d2)
Counts the days between the dates, including the first,
and including the last, ignoring time.
|
static int |
countDays(TimespanI ts)
Counts the days covered by the passed TimespanI, ignoring time.
|
static long |
countDaysInYears(int yearFrom,
int yearTo)
Returns the number of days in a given year-range, regarding if there are leap-years.
|
static long |
coveredTimespanInFullMinutes(java.util.Date d1,
java.util.Date d2)
Returns the number of minutes that the passed Date objects cover, rounded down.
|
static int |
coveredTimespanToDays(java.util.Calendar c1,
java.util.Calendar c2)
Returns the timespan between the passed Calendar objects,
converted to days, default rounded up.
|
static int |
coveredTimespanToDays(java.util.Calendar c1,
java.util.Calendar c2,
boolean roundUp) |
static int |
coveredTimespanToDays(java.util.Date d1,
java.util.Date d2)
Returns the timespan between the passed Date objects,
converted to days, default rounded up.
|
static int |
coveredTimespanToDays(java.util.Date d1,
java.util.Date d2,
boolean roundUp) |
static int |
coveredTimespanToDays(TimespanI ts)
Returns the timespan between the passed Date objects,
converted to days, default rounded up.
|
static int |
coveredTimespanToDays(TimespanI ts,
boolean roundUp) |
static java.util.Calendar |
createCalendar()
Creates a new java.util.Calendar from the given Date object.
|
static java.util.Calendar |
createCalendar(java.util.Date _d) |
static java.util.Calendar |
createCalendar(long _millis)
Creates a new java.util.Calendar represeting the passed time since epoch in millis.
|
static javax.xml.datatype.Duration |
datesToDurationMillis(java.util.Date from,
java.util.Date till)
determines and returns the relevant part of a given timespan, i.e. the part which lies within a given global time-frame
|
static java.util.Date |
getDate(java.lang.String _str)
Deprecated.
use L10n.parseDate instead!
|
static java.util.List<java.util.Date> |
getDateObjects(java.util.Date from,
java.util.Date till)
Returns a List of
Date objects for a period between from and till parameters. |
static java.util.Calendar |
getDateWithoutTime(java.util.Calendar c)
Returns a copy of the passed Calendar, stripped of its time
|
static int |
getDay(java.util.Date d)
Returns an int with the day of the given date, -1 is the given date is null. 1 based.
|
static int |
getDaysPerMonth(java.util.Date d)
returns the number of days of the month of the given date
|
static int |
getDaysPerMonth(int year,
int month)
returns the number of days of the given month in the given year
|
static int |
getDaysPerYear(int year)
Returns the number of days in a given year, regarding if it is a leap-year or not.
|
static java.util.Date |
getFirstDayOfCurrentYear()
Returns a Date object representing the first day of the current year, stripped of time.
|
static java.util.Date |
getFirstDayOfMonth(java.util.Date d)
Returns a Date object representing the first day of the month of the given date.
|
static java.util.Date |
getFirstDayOfMonth(java.util.Date d,
boolean stripTime) |
static java.util.Date |
getFirstDayOfNextMonth(java.util.Date d)
Returns a Date object representing the first day of the month after the given date.
|
static java.util.Date |
getFirstDayOfNextMonth(java.util.Date d,
boolean stripTime) |
static java.util.Date |
getFirstDayOfPreviousMonth(java.util.Date d)
Returns a Date object representing the first day of the month before the given date.
|
static java.util.Date |
getFirstDayOfPreviousMonth(java.util.Date d,
boolean stripTime) |
static java.util.Date |
getFirstDayOfYear(java.util.Date d)
Returns a Date object representing the first day of the year of the passed Date, stripped of time.
|
static java.util.Date |
getFirstDayOfYear(int year)
Returns a Date object representing the first day of the passed year, stripped of time.
|
static java.util.List<java.lang.String> |
getFormatsWithExamples(java.util.Collection<java.lang.String> formats)
Returns a list of date format strings along with examples of the current date formatted according to each of these formats.
|
static java.math.BigDecimal |
getFractionOfMonth(java.util.Date startDayInMonth,
java.util.Date endDayInMonth)
Calculates and returns the fraction of a month covered by the given Dates, based on number of days covered.
|
static java.math.BigDecimal |
getFractionOfMonth(java.util.Date startDayInMonth,
java.util.Date endDayInMonth,
int precision) |
static java.lang.String |
getHourOfDay(java.util.Date _date) |
static int |
getHourOfDayAsInt(java.util.Date d)
Returns an int with the hour of day of the given date, -1 if the given date is null
|
static int |
getHoursPerYear(int year)
Returns the number of hours in a given year, regarding if it is a leap-year or not.
|
static boolean |
getIstZeitumstellungSommerNachWinter(java.util.Date d) |
static boolean |
getIstZeitumstellungWinterNachSommer(java.util.Date d) |
static java.util.Date |
getLastDayOfMonth(java.util.Date d)
Returns a Date being the last day of month and year of the given date.
|
static java.util.Date |
getLastDayOfMonth(java.util.Date d,
boolean stripTime) |
static java.util.Date |
getLastDayOfNextMonth(java.util.Date d)
Returns a Date object representing the last day of the month after the given date.
|
static java.util.Date |
getLastDayOfNextMonth(java.util.Date d,
boolean stripTime) |
static java.util.Date |
getLastDayOfPreviousMonth(java.util.Date d)
Returns a Date object representing the last day of the month before the given date.
|
static java.util.Date |
getLastDayOfPreviousMonth(java.util.Date d,
boolean stripTime) |
static java.util.Date |
getLastDayOfYear(java.util.Date d)
Returns a Date object representing the last day of the year of the passed date, stripped of time.
|
static java.util.Date |
getLastDayOfYear(int year)
Returns a Date object representing the last day of the year represented by the passed int, stripped of time.
|
static int |
getMinuteAsInt(java.util.Date d)
Returns an int with the minute of the given date, -1 if the given date is null
|
static int |
getMonth(java.util.Date d)
Returns an int with the month of the given date, -1 if the given date is null.
|
static int |
getMonth(java.util.Date d,
boolean oneBased) |
static java.util.Collection<java.lang.String> |
getMonthsList()
Returns an ordered list of String month representations with 2 digits for usage e.g. in a ComboBox.
|
static java.util.Collection<java.lang.String> |
getMonthsList(boolean reversed) |
static java.util.Collection<java.lang.String> |
getMonthsList(boolean reversed,
java.util.Date stopMonth) |
static java.util.Date |
getNextMatchingDate(java.lang.String _cronDef)
Evaluates a cron definition and returns the next date the definition matches on.
|
static java.util.Date |
getNextMatchingDate(java.lang.String _cronDef,
java.util.Date fromReferenceDate) |
static java.util.Date |
getNextMatchingDate(java.lang.String _cronDef,
java.util.Date fromReferenceDate,
java.util.TimeZone timeZone) |
static java.lang.Long |
getNumberOfMillis(java.util.Date d1,
java.util.Date d2)
Returns the number of milliseconds that the passed Date objects cover
|
static int |
getNumberOfMonths(java.util.Calendar c1,
java.util.Calendar c2)
Returns the number of months that the passed Calendar objects cover,
rounded up
|
static int |
getNumberOfMonths(java.util.Date from,
java.util.Date till)
Returns the number of months that the passed Date objects cover,
rounded up
|
static int |
getNumberOfTouchedYears(java.util.Date start,
java.util.Date stop)
Returns the number of years the passed dates touch.
|
static java.lang.String |
getQuartal(java.util.Date _d)
Returns String object with quarter and year of given date, empty string if date is null
|
static DateContainer |
getRelevantTimespan(java.util.Date _globalFrom,
java.util.Date _globalTo,
java.util.Date _localFrom,
java.util.Date _localTo)
determines and returns the relevant part of a given timespan, i.e. the part which lies within a given global time-frame
|
static java.util.Calendar |
getTimeWithoutDate(java.util.Calendar c)
Returns a copy of the passed Calendar, stripped of its date
|
static long |
getTimeZoneChangesIn1Day(java.util.Date d)
Uses the java time framework to decide if there is a change of time offset compared to UTC,
i.e. from summer to winter time on that date or vice versa.
|
static long |
getTimeZoneChangesIn1Day(java.time.ZonedDateTime zdtstart)
Method checks if there is a time zone change between the provided datetime and the datetime 1 day later.
|
static java.lang.String |
getWeekOfYear(java.util.Date _date) |
static java.lang.String |
getYear(java.util.Date _date) |
static int |
getYearAsInt(java.util.Date d)
Returns an int with the year of the given date, -1 if the given date is null
|
static boolean |
isAfterOrSameDate(java.util.Calendar cal1,
java.util.Calendar cal2)
Returns true if the passed Calendars are equal or the first date is temporally after the second one.
|
static boolean |
isAfterOrSameDate(java.util.Date date1,
java.util.Date date2)
Returns true if the passed dates are equal or the first date is temporally after the second one.
|
static boolean |
isAfterOrSameDay(java.util.Date dateToCheck,
java.util.Date anchorDate)
Returns true if the passed dates are on the same day or the first date is temporally after the anchor date.
|
static boolean |
isAfterOrSameDay(java.util.Date dateToCheck,
java.util.Date anchorDate,
boolean ignoreTime) |
static boolean |
isBeforeOrSameDate(java.util.Calendar cal1,
java.util.Calendar cal2)
Returns true if the passed Calendars are equal or the first date is temporally before the second one.
|
static boolean |
isBeforeOrSameDate(java.util.Date date1,
java.util.Date date2)
Returns true if the passed dates are equal or the first date is temporally before the second one.
|
static boolean |
isBeforeOrSameDay(java.util.Date dateToCheck,
java.util.Date anchorDate)
Returns true if the passed dates are on the same day or the first date is temporally before the anchor date.
|
static boolean |
isBeforeOrSameDay(java.util.Date dateToCheck,
java.util.Date anchorDate,
boolean ignoreTime) |
static boolean |
isFirstDayOfMonth(java.util.Date d)
Returns true if the passed date is on the first day of the respective month
|
static boolean |
isFirstDayOfYear(java.util.Date d)
Returns true if the passed date is the first day of the year
|
static boolean |
isLastDayOfMonth(java.util.Calendar cal)
Returns true if the passed Calendar represents the last day of the respective month
|
static boolean |
isLastDayOfMonth(java.util.Date d)
Returns true if the passed date is on the last day of the respective month
|
static boolean |
isLastDayOfYear(java.util.Date d)
Returns true if the passed date represents the last day of its year
|
static boolean |
isMonth(java.util.Date d,
int month)
Returns
true if the passed date has the specified month. |
static boolean |
isNextDay(java.util.Date nextDay,
java.util.Date day)
Returns
true if the "nextDay" (1st argument) is the same day as the next day after the "day" (2nd argument). |
static boolean |
isPreviousDay(java.util.Date previousDay,
java.util.Date day)
Returns
true if the "previousDay" (1st argument) is the same day as the previous day before the "day" (2nd argument). |
static boolean |
isSameDay(java.util.Date date1,
java.util.Date date2)
Returns
true if the passed dates are on the same day or both dates are null. |
static boolean |
isSameDayOfWeek(java.util.Date d1,
java.util.Date d2)
Returns
true if the passed dates have the same day of the week. |
static boolean |
isSameMonth(java.util.Date date1,
java.util.Date date2)
Returns
true if the passed dates are in the same month. |
static boolean |
isSameYear(java.util.Date date1,
java.util.Date date2)
Returns
true if the passed dates are in the same year or both dates are null. |
static boolean |
isSaturday(java.util.Date d)
Returns true if the passed date is a saturday.
|
static boolean |
isSpecificDay(java.util.Date d,
int day)
Returns true if the passed date is a given day.
|
static boolean |
isSunday(java.util.Date d)
Returns true if the passed date is a sunday.
|
static boolean |
isWeekend(java.util.Date d)
Returns true if the passed date is a weekend day.
|
static java.util.Date |
joinDates(java.util.Date _date,
java.util.Date _time)
Returns a Date object with the date of the 1st passed object and the time of the 2nd passed object
|
static boolean |
liesInInterval(java.util.Date candidate,
java.util.Date dateStart,
java.util.Date dateEnd)
Checks if the given
candidate lies within the given dateStart and dateEnd . |
static boolean |
liesInInterval(java.util.Date candidate,
java.util.Date dateStart,
java.util.Date dateEnd,
java.lang.Boolean fallbackForNullCandidate) |
static boolean |
liesInInterval(java.util.Date candidate,
java.util.Date dateStart,
java.util.Date dateEnd,
java.lang.Boolean fallbackForNullCandidate,
boolean excludingLeft) |
static boolean |
liesInInterval(java.util.Date candidate,
java.util.Date dateStart,
java.util.Date dateEnd,
java.lang.Boolean fallbackForNullCandidate,
boolean excludingLeft,
boolean excludingRight) |
static boolean |
liesInInterval(java.util.Date candidate,
java.util.Date dateStart,
java.util.Date dateEnd,
java.lang.Boolean fallbackForNullCandidate,
boolean excludingLeft,
boolean excludingRight,
boolean stripTime) |
static boolean |
liesInInterval(java.util.Date candidate,
TimespanI ts)
Checks if the given
Date lies within the given TimespanI . |
static boolean |
liesInInterval(java.util.Date candidate,
TimespanI ts,
java.lang.Boolean fallbackForNullCandidate) |
static boolean |
liesInInterval(java.util.Date candidate,
TimespanI ts,
java.lang.Boolean fallbackForNullCandidate,
boolean stripTime) |
static boolean |
liesInLeftOpenInterval(java.util.Date candidate,
java.util.Date dateStart,
java.util.Date dateEnd)
wrapper for liesInInterval. excludes dateStart.
|
static boolean |
liesInLeftOpenInterval(java.util.Date candidate,
java.util.Date dateStart,
java.util.Date dateEnd,
java.lang.Boolean fallbackForNullCandidate) |
static boolean |
liesInLeftOpenInterval(java.util.Date candidate,
java.util.Date dateStart,
java.util.Date dateEnd,
java.lang.Boolean fallbackForNullCandidate,
boolean stripTime) |
static boolean |
liesInLeftOpenInterval(java.util.Date candidate,
TimespanI ts)
wrapper for liesInInterval with a Timespan. excludes the start date of the timespan.
|
static boolean |
liesInLeftOpenInterval(java.util.Date candidate,
TimespanI ts,
java.lang.Boolean fallbackForNullCandidate) |
static boolean |
liesInLeftOpenInterval(java.util.Date candidate,
TimespanI ts,
java.lang.Boolean fallbackForNullCandidate,
boolean stripTime) |
static boolean |
liesInOpenInterval(java.util.Date candidate,
java.util.Date dateStart,
java.util.Date dateEnd)
wrapper for liesInInterval. excludes dateStart and dateEnd.
|
static boolean |
liesInOpenInterval(java.util.Date candidate,
java.util.Date dateStart,
java.util.Date dateEnd,
java.lang.Boolean fallbackForNullCandidate) |
static boolean |
liesInOpenInterval(java.util.Date candidate,
java.util.Date dateStart,
java.util.Date dateEnd,
java.lang.Boolean fallbackForNullCandidate,
boolean stripTime) |
static boolean |
liesInOpenInterval(java.util.Date candidate,
TimespanI ts)
wrapper for liesInInterval with a Timespan. excludes the start and end date of the timespan.
|
static boolean |
liesInOpenInterval(java.util.Date candidate,
TimespanI ts,
java.lang.Boolean fallbackForNullCandidate) |
static boolean |
liesInOpenInterval(java.util.Date candidate,
TimespanI ts,
java.lang.Boolean fallbackForNullCandidate,
boolean stripTime) |
static boolean |
liesInRightOpenInterval(java.util.Date candidate,
java.util.Date dateStart,
java.util.Date dateEnd)
wrapper for liesInInterval. excludes the dateEnd.
|
static boolean |
liesInRightOpenInterval(java.util.Date candidate,
java.util.Date dateStart,
java.util.Date dateEnd,
java.lang.Boolean fallbackForNullCandidate) |
static boolean |
liesInRightOpenInterval(java.util.Date candidate,
java.util.Date dateStart,
java.util.Date dateEnd,
java.lang.Boolean fallbackForNullCandidate,
boolean stripTime) |
static boolean |
liesInRightOpenInterval(java.util.Date candidate,
TimespanI ts)
wrapper for liesInInterval with a Timespan. excludes the end date of the timespan.
|
static boolean |
liesInRightOpenInterval(java.util.Date candidate,
TimespanI ts,
java.lang.Boolean fallbackForNullCandidate) |
static boolean |
liesInRightOpenInterval(java.util.Date candidate,
TimespanI ts,
java.lang.Boolean fallbackForNullCandidate,
boolean stripTime) |
static java.util.Date |
longToDate(java.lang.Long _l)
constructs a Date-object representing the time expressed by the given value as milliseconds
|
static java.util.Calendar |
maxCalendar(java.util.Calendar _d1,
java.util.Calendar _d2)
Returns the later of the dates represented by the given Calendars.
|
static java.util.Calendar |
maxCalendar(java.util.Calendar _d1,
java.util.Calendar _d2,
boolean _nullMeansInfinity) |
static java.util.Date |
maxDate(java.util.Date _d1,
java.util.Date _d2)
Returns the later of the given Dates.
|
static java.util.Date |
maxDate(java.util.Date _d1,
java.util.Date _d2,
boolean _nullMeansInfinity) |
static java.util.Calendar |
minCalendar(java.util.Calendar _d1,
java.util.Calendar _d2)
Returns the earlier of the dates represented by the given Calendars.
|
static java.util.Calendar |
minCalendar(java.util.Calendar _d1,
java.util.Calendar _d2,
boolean _nullMeansEpoch) |
static java.util.Date |
minDate(java.util.Date _d1,
java.util.Date _d2)
Returns the earlier of the given Dates.
|
static java.util.Date |
minDate(java.util.Date _d1,
java.util.Date _d2,
boolean _nullMeansEpoch) |
static java.math.BigDecimal |
minutesToHours(java.math.BigDecimal mins)
Converts a given amount in minutes to hours and returns a BigDecimal.
|
static java.math.BigDecimal |
minutesToHours(java.math.BigDecimal mins,
int precision) |
static java.math.BigDecimal |
minutesToHours(java.lang.Long mins)
Converts a given amount in minutes to hours and returns a BigDecimal.
|
static java.math.BigDecimal |
minutesToHours(java.lang.Long mins,
int precision) |
static java.math.BigDecimal |
minutesToSeconds(java.math.BigDecimal mins)
Converts a given amount in minutes to seconds and returns a BigDecimal.
|
static java.lang.Long |
minutesToSeconds(java.lang.Long mins)
Converts a given amount in minutes to seconds and returns a Long.
|
static long |
nanosTo(long nanos,
java.util.concurrent.TimeUnit timeUnit)
Converts the passed nano-second value to the passed TimeUnit
and returns the full units of the desired kind (no rounding!)
|
static javax.xml.datatype.Duration |
newDuration()
Creates a new
javax.xml.datatype.Duration from a string representation. |
static javax.xml.datatype.Duration |
newDuration(int years,
int months,
int days,
int hours,
int minutes,
int seconds)
Creates a new
javax.xml.datatype.Duration from a number of years, months, days,
hours, minutes, and seconds. |
static javax.xml.datatype.Duration |
newDuration(java.lang.String s) |
static javax.xml.datatype.Duration |
newDurationFromSeconds(int seconds)
Creates a new
javax.xml.datatype.Duration from a number of seconds. |
static javax.xml.datatype.Duration |
newNegativeDuration(int years,
int months,
int days,
int hours,
int minutes,
int seconds)
Creates a new negative
javax.xml.datatype.Duration from a number of years,
months, days, hours, minutes, and seconds. |
static javax.xml.datatype.Duration |
newNegativeDurationFromSeconds(int seconds)
Creates a new negative
javax.xml.datatype.Duration from a number of seconds. |
static boolean |
nullSafeAfter(java.util.Date date1,
java.util.Date date2)
Returns true if first date is temporally after the second one.
|
static boolean |
nullSafeBefore(java.util.Date date1,
java.util.Date date2)
Returns true if the first date is temporally before the second one.
|
static boolean |
overlap(TimespanI _ts1,
TimespanI _ts2)
Deprecated.
use the far more comprehensible method TimespanI::overlapsWith instead
FIXME (electris)StromPOD->checkForOverlappingStromlieferinfos() is a similar yet different method. if you have a different case
than in this function approaches, feel free to copy from there :-)
(-> i have tried to merge them, but the matter is too complex for me and the functions vary too much)
|
static boolean |
overlap(TimespanI _ts1,
TimespanI _ts2,
boolean _strict) |
static boolean |
overlaps(TimespanI _ts,
TimespanI[] _tss)
Checks if the given
TimespanI overlaps any of the other given
TimespanI s. |
static java.util.Date |
setDayOfMonth(java.util.Date d,
int day)
sets the day of the given month to the given day, 1 based
the value of the day gets truncated to the limits of the current month
|
static java.util.Date |
setMaxTime(java.util.Date date) |
static java.util.Date |
setMonth(java.util.Date d,
int month) |
static java.util.Date |
setMonth(java.util.Date d,
int month,
boolean oneBased) |
static java.util.Date |
setTime(java.util.Date _date,
int _hours,
int _minutes,
int _seconds,
int _ms)
Convenience method to set get a copy of a given
Date with the
time values set to the given time. |
static java.util.Date |
setYear(java.util.Date d,
int y)
Sets the year in the passed Date object to the passed year.
|
static java.util.Calendar |
stripDate(java.util.Calendar c)
Returns the passed Calendar, stripped of its date
|
static java.util.Date |
stripDate(java.util.Date d)
Returns a copy of the passed Date, stripped of its date
|
static java.util.Date |
stripMillis(java.util.Date _d)
Returns a copy of the passed Date, stripped off its milliseconds
|
static java.util.Date |
stripMinutes(java.util.Date _d)
Returns a copy of the passed Date, stripped off its minutes
|
static java.util.Date |
stripSeconds(java.util.Date _d)
Returns a copy of the passed Date, stripped off its seconds
|
static java.util.Calendar |
stripTime(java.util.Calendar c)
Returns the passed Calendar, stripped of its time
|
static java.util.Date |
stripTime(java.util.Date d)
Returns a copy of the passed Date, stripped of its time
|
static java.util.Calendar |
stripX(java.util.Calendar _c,
java.lang.String _mode)
Returns the passed Calendar, stripped of calendarparts defined via _mode
_mode can have the following values:
STRIP_MILLISECONDS
STRIP_SECONDS
STRIP_MINUTES
STRIP_HOURS
STRIP_DAYS
STRIP_MONTHS
STRIP_YEARS
STRIP_TIME
STRIP_DATE
|
static java.util.Date |
stripX(java.util.Date _d,
java.lang.String _mode)
Returns a copy of the passed Date, stripped of dateparts defined via _mode
delegates to stripX(_c = Calendar, _mode = String), for that _mode can have the
following values:
STRIP_MILLISECONDS
STRIP_SECONDS
STRIP_MINUTES
STRIP_HOURS
STRIP_DAYS
STRIP_MONTHS
STRIP_YEARS
STRIP_TIME
STRIP_DATE
FIXME!
|
static java.util.Date |
subtractDay(java.util.Date d)
subtracts 1 day from a given date
simply a wrapper method for subtractFromDate(d, Calendar.DAY_OF_MONTH, 1)
|
static java.util.Date |
subtractDays(java.util.Date d,
int days)
subtracts a given number of days from a given date
simply a wrapper method for subtractFromDate(d, Calendar.DAY_OF_MONTH, days)
|
static java.util.Date |
subtractFromDate(java.util.Date d,
int arg0,
int toSubtract)
subtracts a given number of Date-Parts (Seconds, Minutes, Days, Years,...) from a given date
the type to subtract (arg0) must be a field of java.util.Calendar, i.e.:
Calendar.YEAR, Calendar.MONTH, Calendar.DAY_OF_MONTH, Calendar.HOUR, ...
|
static java.util.Date |
subtractHour(java.util.Date d)
subtract 1 hour from a given date
simply a wrapper method for subtractFromDate(d, Calendar.HOUR, 1)
|
static java.util.Date |
subtractHours(java.util.Date d,
int hours)
subtracts a given number of hours from a given date
simply a wrapper method for subtractFromDate(d, Calendar.HOUR, hours)
|
static java.util.Date |
subtractMillisecond(java.util.Date d)
subtract 1 millisecond from a given date
simply a wrapper method for subtractFromDate(d, Calendar.MILLISECOND, 1)
|
static java.util.Date |
subtractMilliseconds(java.util.Date d,
int ms)
subtracts a given number of milliseconds from a given date
simply a wrapper method for subtractFromDate(d, Calendar.MILLISECOND, ms)
|
static java.util.Date |
subtractMinute(java.util.Date d)
subtract 1 minute from a given date
simply a wrapper method for subtractFromDate(d, Calendar.MINUTE, 1)
|
static java.util.Date |
subtractMinutes(java.util.Date d,
int minutes)
subtracts a given number of minutes from a given date
simply a wrapper method for subtractFromDate(d = Date, arg0 = int, toSubtract = int)
|
static java.util.Date |
subtractMonth(java.util.Date d)
subtract 1 month from a given date
simply a wrapper method for subtractFromDate(d, Calendar.MONTH, 1)
|
static java.util.Date |
subtractMonths(java.util.Date d,
int months)
subtracts a given number of months from a given date
simply a wrapper method for subtractFromDate(d, Calendar.MONTH, months)
|
static java.util.Date |
subtractSecond(java.util.Date d)
subtract 1 second from a given date
simply a wrapper method for subtractFromDate(d, Calendar.SECOND, 1)
|
static java.util.Date |
subtractSeconds(java.util.Date d,
int seconds)
subtracts a given number of seconds from a given date
simply a wrapper method for subtractFromDate(d = Date, arg0 = int, toSubtract = int)
|
static java.util.Date |
subtractWeek(java.util.Date d)
subtracts 1 week from a given date
simply a wrapper method for subtractFromDate(d, Calendar.WEEK_OF_YEAR, 1)
|
static java.util.Date |
subtractWeeks(java.util.Date d,
int weeks)
subtracts a given number of weeks from a given date
simply a wrapper method for subtractFromDate(d, Calendar.WEEK_OF_YEAR, weeks)
|
static java.util.Date |
subtractYear(java.util.Date d)
subtract 1 year from a given date
simply a wrapper method for subtractFromDate(d, Calendar.YEAR, 1)
|
static java.util.Date |
subtractYears(java.util.Date d,
int years)
subtracts a given number of years from a given date
simply a wrapper method for subtractFromDate(d, Calendar.YEAR, years)
|
static javax.xml.datatype.Duration |
timeDistance(java.util.Calendar referenceDate,
java.util.Calendar targetDate)
Calculates the duration from a referrenced point in time to a target time.
|
static javax.xml.datatype.Duration |
timeDistance(java.util.Calendar reference,
java.util.Calendar intervalStart,
java.util.Calendar intervalEnd)
Calculates the duration from a referrenced point in time to the closest border of
a time interval, unless the reference is inbetween.
|
static javax.xml.datatype.Duration |
timeDistance(java.util.Date referenceDate,
java.util.Date targetDate)
Convenience method for
#calculateTimeDistance(Calender, Calendar) |
static javax.xml.datatype.Duration |
timeDistance(java.util.Date reference,
java.util.Date intervalStart,
java.util.Date intervalEnd)
Convenience method for
#calculateTimeDistance(Calender, Calendar, Calendar) |
static java.math.BigDecimal |
toHours(java.lang.Long ts)
Converts a given timespan (in seconds) to hours and returns a BigDecimal.
|
static java.math.BigDecimal |
toHours(java.lang.Long ts,
int precision) |
static java.time.LocalDate |
toLocalDate(java.util.Date d)
Helper method for a quick conversion from Date to LocalDate, either with an explicit or implicit (system default) time zone.
|
static java.time.LocalDate |
toLocalDate(java.util.Date d,
java.time.ZoneId timezone) |
static java.time.LocalDateTime |
toLocalDateTime(java.util.Date d)
Helper method for a quick conversion from Date to LocalDateTime, either with an explicit or implicit (system default) time zone.
|
static java.time.LocalDateTime |
toLocalDateTime(java.util.Date d,
java.time.ZoneId timezone) |
static java.time.LocalTime |
toLocalTime(java.util.Date d)
Helper method for a quick conversion from Date to LocalTime, either with an explicit or implicit (system default) time zone.
|
static java.time.LocalTime |
toLocalTime(java.util.Date d,
java.time.ZoneId timezone) |
static java.math.BigDecimal |
toMinutes(java.lang.Long ts)
Converts a given timespan (in seconds) to minutes and returns a BigDecimal.
|
static java.math.BigDecimal |
toMinutes(java.lang.Long ts,
int precision) |
static java.time.OffsetDateTime |
toOffsetDateTime(java.util.Date d)
Helper method for a quick conversion from Date to OffsetDateTime, either with an explicit or implicit (system default) time zone.
|
static java.time.OffsetDateTime |
toOffsetDateTime(java.util.Date d,
java.time.ZoneId timezone) |
static java.time.ZonedDateTime |
toZonedDateTime(java.util.Date d)
Helper method for a quick conversion from Date to ZonedDateTime, either with an explicit or implicit (system default) time zone.
|
static java.time.ZonedDateTime |
toZonedDateTime(java.util.Date d,
java.time.ZoneId timezone) |
public static final java.lang.String DATEFORMAT_PATTERN
public static final java.math.BigDecimal MILLISECONDS_PER_SECOND
public static final java.math.BigDecimal SECONDS_PER_MINUTE
public static final java.math.BigDecimal MILLISECONDS_PER_MINUTE
public static final java.math.BigDecimal MINUTES_PER_HOUR
public static final java.math.BigDecimal SECONDS_PER_HOUR
public static final java.math.BigDecimal MILLISECONDS_PER_HOUR
public static final java.math.BigDecimal HOURS_PER_DAY
public static final java.math.BigDecimal MINUTES_PER_DAY
public static final java.math.BigDecimal SECONDS_PER_DAY
public static final java.math.BigDecimal MILLISECONDS_PER_DAY
public static final java.lang.String STRIP_MILLISECONDS
public static final java.lang.String STRIP_SECONDS
public static final java.lang.String STRIP_MINUTES
public static final java.lang.String STRIP_HOURS
public static final java.lang.String STRIP_DAYS
public static final java.lang.String STRIP_MONTHS
public static final java.lang.String STRIP_YEARS
public static final java.lang.String STRIP_TIME
public static final java.lang.String STRIP_DATE
public static java.util.Date getDate(java.lang.String _str) throws java.text.ParseException
Date
created by parsing the given
String
using L10n.parseDate
with pattern
"yyyy-MM-dd". Just a convenience method._str
- the String
to parse into a Date
Date
java.text.ParseException
public static java.util.Collection<java.lang.String> getMonthsList()
reversed
- a boolean, if true the returned list will be reversed instead of in natural order (optional)stopMonth
- if a Date is given the list will only include the first months including the month of the passed datepublic static java.util.Collection<java.lang.String> getMonthsList(boolean reversed)
public static java.util.Collection<java.lang.String> getMonthsList(boolean reversed, java.util.Date stopMonth)
public static boolean liesInLeftOpenInterval(java.util.Date candidate, TimespanI ts)
public static boolean liesInLeftOpenInterval(java.util.Date candidate, TimespanI ts, java.lang.Boolean fallbackForNullCandidate)
public static boolean liesInLeftOpenInterval(java.util.Date candidate, TimespanI ts, java.lang.Boolean fallbackForNullCandidate, boolean stripTime)
public static boolean liesInRightOpenInterval(java.util.Date candidate, TimespanI ts)
public static boolean liesInRightOpenInterval(java.util.Date candidate, TimespanI ts, java.lang.Boolean fallbackForNullCandidate)
public static boolean liesInRightOpenInterval(java.util.Date candidate, TimespanI ts, java.lang.Boolean fallbackForNullCandidate, boolean stripTime)
public static boolean liesInOpenInterval(java.util.Date candidate, TimespanI ts)
public static boolean liesInOpenInterval(java.util.Date candidate, TimespanI ts, java.lang.Boolean fallbackForNullCandidate)
public static boolean liesInOpenInterval(java.util.Date candidate, TimespanI ts, java.lang.Boolean fallbackForNullCandidate, boolean stripTime)
public static boolean liesInInterval(java.util.Date candidate, TimespanI ts)
Date
lies within the given TimespanI
.
If getDateStart()
of the passed TimespanI
returns null, it is only checked
if the Date
lies before or on getDateEnd()
.
If getDateEnd()
of the passed TimespanI
returns null, it is only checked
if the Date
lies on or after getDateStart()
.
If both return null, the method always returns true (because the TimeSpanI
then includes "all the time").
If the passed candidate is null and fallbackForNullCandidate is null, an IllegalArgumentException is raised.ts
- the TimespanI
candidate
- the Date
to checkfallbackForNullCandidate
- if the candidate is null and fallbackForNullCandidate is:
null: signals IAE
Boolean.FALSE: returns false
Boolean.TRUE: returns truestripTime
- if true the time-part of candidate and DateStart/DateEnd of the passed TimespanI are discarded before the checkcandidate
lies within the given
TimespanI
, false otherwisepublic static boolean liesInInterval(java.util.Date candidate, TimespanI ts, java.lang.Boolean fallbackForNullCandidate)
public static boolean liesInInterval(java.util.Date candidate, TimespanI ts, java.lang.Boolean fallbackForNullCandidate, boolean stripTime)
public static boolean liesInLeftOpenInterval(java.util.Date candidate, java.util.Date dateStart, java.util.Date dateEnd)
public static boolean liesInLeftOpenInterval(java.util.Date candidate, java.util.Date dateStart, java.util.Date dateEnd, java.lang.Boolean fallbackForNullCandidate)
public static boolean liesInLeftOpenInterval(java.util.Date candidate, java.util.Date dateStart, java.util.Date dateEnd, java.lang.Boolean fallbackForNullCandidate, boolean stripTime)
public static boolean liesInRightOpenInterval(java.util.Date candidate, java.util.Date dateStart, java.util.Date dateEnd)
public static boolean liesInRightOpenInterval(java.util.Date candidate, java.util.Date dateStart, java.util.Date dateEnd, java.lang.Boolean fallbackForNullCandidate)
public static boolean liesInRightOpenInterval(java.util.Date candidate, java.util.Date dateStart, java.util.Date dateEnd, java.lang.Boolean fallbackForNullCandidate, boolean stripTime)
public static boolean liesInOpenInterval(java.util.Date candidate, java.util.Date dateStart, java.util.Date dateEnd)
public static boolean liesInOpenInterval(java.util.Date candidate, java.util.Date dateStart, java.util.Date dateEnd, java.lang.Boolean fallbackForNullCandidate)
public static boolean liesInOpenInterval(java.util.Date candidate, java.util.Date dateStart, java.util.Date dateEnd, java.lang.Boolean fallbackForNullCandidate, boolean stripTime)
public static boolean liesInInterval(java.util.Date candidate, java.util.Date dateStart, java.util.Date dateEnd)
candidate
lies within the given dateStart
and dateEnd
.
If the passed candidate is null and fallbackForNullCandidate is null, an IllegalArgumentException is raised.dateStart
- the start date of the interval; null is interpreted as EpochdateEnd
- the end date of the interval; null is interpreted as Infinitycandidate
- the date to checkfallbackForNullCandidate
- if the candidate is null and fallbackForNullCandidate is:
null: signals IAE
Boolean.FALSE: returns false
Boolean.TRUE: returns trueexcludingLeft
- whether the left boundary is included or excludedexcludingRight
- whether the right boundary is included or excludedstripTime
- if true the time-part of candidate, dateStart and dateEnd are discarded before the checkcandidate
lies within the given
Dates
, false otherwisepublic static boolean liesInInterval(java.util.Date candidate, java.util.Date dateStart, java.util.Date dateEnd, java.lang.Boolean fallbackForNullCandidate)
public static boolean liesInInterval(java.util.Date candidate, java.util.Date dateStart, java.util.Date dateEnd, java.lang.Boolean fallbackForNullCandidate, boolean excludingLeft)
public static boolean liesInInterval(java.util.Date candidate, java.util.Date dateStart, java.util.Date dateEnd, java.lang.Boolean fallbackForNullCandidate, boolean excludingLeft, boolean excludingRight)
public static boolean liesInInterval(java.util.Date candidate, java.util.Date dateStart, java.util.Date dateEnd, java.lang.Boolean fallbackForNullCandidate, boolean excludingLeft, boolean excludingRight, boolean stripTime)
@Deprecated public static boolean overlap(TimespanI _ts1, TimespanI _ts2)
TimespanI
s overlap._ts1
- the first TimespanI
_ts2
- the second TimespanI
_strict
- if true (the default) the Timespans will be considered to be
overlapping also when the end date of one is exactly the start date of
the other; if false such a case will still not be considered overlapping.TimespanI
s overlap, false otherwise.public static boolean overlaps(TimespanI _ts, TimespanI[] _tss)
TimespanI
overlaps any of the other given
TimespanI
s._ts
- the TimespanI
to check_tss
- an array of TimespanI
s against which _ts should be checkedTimespanI
s overlaps any of the other
given TimespanI
s, false otherwise.public static void checkTimespan(TimespanI _ts) throws InvalidTimespanException
TimespanI
for errors. Currently only checks if
getDateStart()
is before (or on) getDateEnd()
if
both are set._ts
- the TimespanI
to checkInvalidTimespanException
- in case the TimespanI
is invalidpublic static java.util.Calendar createCalendar()
public static java.util.Calendar createCalendar(java.util.Date _d)
public static java.util.Calendar createCalendar(long _millis)
public static boolean nullSafeBefore(java.util.Date date1, java.util.Date date2)
public static boolean nullSafeAfter(java.util.Date date1, java.util.Date date2)
public static boolean isBeforeOrSameDate(java.util.Calendar cal1, java.util.Calendar cal2)
public static boolean isAfterOrSameDate(java.util.Calendar cal1, java.util.Calendar cal2)
public static boolean isBeforeOrSameDate(java.util.Date date1, java.util.Date date2)
public static boolean isAfterOrSameDate(java.util.Date date1, java.util.Date date2)
public static boolean isSameDayOfWeek(java.util.Date d1, java.util.Date d2)
true
if the passed dates have the same day of the week.d1
- the first date to compared2
- the second date to comparetrue
if the passed dates have the same day of the week; false
otherwisepublic static boolean isBeforeOrSameDay(java.util.Date dateToCheck, java.util.Date anchorDate)
dateToCheck
- the Date for which should be determined if it is before or on the same day as the anchor dateanchorDate
- the anchor date against which to check the first dateignoreTime
- if true, the time will be ignored and the difference of the Dates will only be compared in regards to the day they are onpublic static boolean isBeforeOrSameDay(java.util.Date dateToCheck, java.util.Date anchorDate, boolean ignoreTime)
public static boolean isAfterOrSameDay(java.util.Date dateToCheck, java.util.Date anchorDate)
dateToCheck
- the Date for which should be determined if it is after or on the same day as the anchor dateanchorDate
- the anchor date against which to check the first dateignoreTime
- if true, the time will be ignored and the difference of the Dates will only be compared in regards to the day they are onpublic static boolean isAfterOrSameDay(java.util.Date dateToCheck, java.util.Date anchorDate, boolean ignoreTime)
public static boolean isNextDay(java.util.Date nextDay, java.util.Date day)
true
if the "nextDay" (1st argument) is the same day as the next day after the "day" (2nd argument).nextDay
- the date to check if it is the next day after the specified dayday
- the reference datetrue
if the "nextDay" is the same day as the next day after the "day"; false
otherwisepublic static boolean isSameDay(java.util.Date date1, java.util.Date date2)
true
if the passed dates are on the same day or both dates are null.date1
- the first date to comparedate2
- the second date to comparetrue
if the passed dates are on the same day or both dates are null; false
otherwisepublic static boolean isPreviousDay(java.util.Date previousDay, java.util.Date day)
true
if the "previousDay" (1st argument) is the same day as the previous day before the "day" (2nd argument).previousDay
- the date to check if it is the previous day before the specified dayday
- the reference datetrue
if the "previousDay" is the same day as the previous day before the "day"; false
otherwisepublic static boolean isMonth(java.util.Date d, int month)
true
if the passed date has the specified month.d
- the date to checkmonth
- the month to compare with the month of the date (Calendar.JANUARY or 0, Calendar.FEBRUARY or 1, etc.)true
if the passed date has the specified month; false
otherwisepublic static boolean isSameMonth(java.util.Date date1, java.util.Date date2)
true
if the passed dates are in the same month. Handles null values like equals().date1
- the first date to comparedate2
- the second date to comparetrue
if the passed dates are in the same month; false
otherwisepublic static boolean isSameYear(java.util.Date date1, java.util.Date date2)
true
if the passed dates are in the same year or both dates are null.date1
- the first date to comparedate2
- the second date to comparetrue
if the passed dates are in the same year or both dates are null; false
otherwisepublic static boolean isSaturday(java.util.Date d)
public static boolean isSunday(java.util.Date d)
public static boolean isWeekend(java.util.Date d)
public static boolean isSpecificDay(java.util.Date d, int day)
public static java.util.Calendar maxCalendar(java.util.Calendar _d1, java.util.Calendar _d2)
_d1
- the first Calendar to be compared_d2
- the second Calendar to be compared_nullMeansInfinity
- if true, if one of the Calendars is null, it is interpreted as infinity and thus returned
if false(default), a null Calendar is interpreted as the earlier datepublic static java.util.Calendar maxCalendar(java.util.Calendar _d1, java.util.Calendar _d2, boolean _nullMeansInfinity)
public static java.util.Date maxDate(java.util.Date _d1, java.util.Date _d2)
_d1
- the first Date to be compared_d2
- the second Date to be compared_nullMeansInfinity
- if true, if one of the Dates is null, it is interpreted as infinity and thus returned
if false(default), a null Date is interpreted as the earlier datepublic static java.util.Date maxDate(java.util.Date _d1, java.util.Date _d2, boolean _nullMeansInfinity)
public static java.util.Calendar minCalendar(java.util.Calendar _d1, java.util.Calendar _d2)
_d1
- the first Calendar to be compared_d2
- the second Calendar to be compared_nullMeansInfinity
- if true, if one of the Calendars is null, it is interpreted as epoch and thus returned
if false(default), a null Calendar is interpreted as the later datepublic static java.util.Calendar minCalendar(java.util.Calendar _d1, java.util.Calendar _d2, boolean _nullMeansEpoch)
public static java.util.Date minDate(java.util.Date _d1, java.util.Date _d2)
_d1
- the first Date to be compared_d2
- the second Date to be compared_nullMeansEpoch
- if true, if one of the Dates is null, it is interpreted as epoch and thus returned
if false(default), a null Date is interpreted as the later datepublic static java.util.Date minDate(java.util.Date _d1, java.util.Date _d2, boolean _nullMeansEpoch)
public static java.util.Date longToDate(java.lang.Long _l)
_l
- the milliseconds from which a Date shall be constructedpublic static DateContainer getRelevantTimespan(java.util.Date _globalFrom, java.util.Date _globalTo, java.util.Date _localFrom, java.util.Date _localTo)
_globalFrom
- the beginning of the outer timespan_globalTo
- the ending of the outer timespan_localFrom
- the beginning of the inner timespan_localTo
- the ending of the inner timespanpublic static javax.xml.datatype.Duration newDuration()
javax.xml.datatype.Duration
from a string representation.s
- the javax.xml.datatype.Duration
as its string representation,
"PnYnMnDTnHnMnS", as defined in XML Schema 1.0 section 3.2.6.1.
Defaults to "P0Y0M0DT0H0M0S".javax.xml.datatype.Duration
public static javax.xml.datatype.Duration newDuration(java.lang.String s)
public static javax.xml.datatype.Duration newDurationFromSeconds(int seconds)
javax.xml.datatype.Duration
from a number of seconds.seconds
- the number of seconds in the durationjavax.xml.datatype.Duration
public static javax.xml.datatype.Duration newDuration(int years, int months, int days, int hours, int minutes, int seconds)
javax.xml.datatype.Duration
from a number of years, months, days,
hours, minutes, and seconds.years
- the number of years in the durationmonths
- the number of months in the durationdays
- the number of days in the durationhours
- the number of hours in the durationminutes
- the number of minutes in the durationseconds
- the number of seconds in the durationjavax.xml.datatype.Duration
public static javax.xml.datatype.Duration newNegativeDurationFromSeconds(int seconds)
javax.xml.datatype.Duration
from a number of seconds.seconds
- the number of seconds in the durationjavax.xml.datatype.Duration
public static javax.xml.datatype.Duration newNegativeDuration(int years, int months, int days, int hours, int minutes, int seconds)
javax.xml.datatype.Duration
from a number of years,
months, days, hours, minutes, and seconds.years
- the number of years in the durationmonths
- the number of months in the durationdays
- the number of days in the durationhours
- the number of hours in the durationminutes
- the number of minutes in the durationseconds
- the number of seconds in the durationjavax.xml.datatype.Duration
public static java.util.Date getNextMatchingDate(java.lang.String _cronDef)
_cronDef
- the cron definition string, nonnull.fromReferenceDate
- if not null, defined the 'now' regarding the next date calculation. If null, uses the current time since epoch.timeZone
- the nullable timezone to calculate the matching date for. If null, uses the current default timezone.java.lang.IllegalArgumentException
- if the _cronDef is in an invalid patternpublic static java.util.Date getNextMatchingDate(java.lang.String _cronDef, java.util.Date fromReferenceDate)
public static java.util.Date getNextMatchingDate(java.lang.String _cronDef, java.util.Date fromReferenceDate, java.util.TimeZone timeZone)
public static java.util.Date adjustTimeToMinimum(java.util.Date _date1, java.util.Date _date2)
public static int getYearAsInt(java.util.Date d)
d
- the date to get the year as int forpublic static int getHourOfDayAsInt(java.util.Date d)
d
- the date to get the hour of day as int forpublic static int getMinuteAsInt(java.util.Date d)
d
- the date to get the hour of day as int forpublic static java.lang.String getQuartal(java.util.Date _d)
_d
- the date to get the quarter and year forpublic static int getMonth(java.util.Date d)
d
- the date to get the month as int foroneBased
- if true, the result is in the range of 1..12 (default).
if false, it is in the range of 0..11public static int getMonth(java.util.Date d, boolean oneBased)
public static int getDay(java.util.Date d)
d
- the date to get the day as int forpublic static java.util.Date setDayOfMonth(java.util.Date d, int day)
public static java.lang.String getHourOfDay(java.util.Date _date)
public static java.util.Date setMonth(java.util.Date d, int month)
d
- the date from which the month is to be changedmonth
- a value representing the month that is to be setoneBased
- if true, the value of the month is in the range 1..12 (default);
if false it is in the range of 0..11public static java.util.Date setMonth(java.util.Date d, int month, boolean oneBased)
public static java.util.Date setYear(java.util.Date d, int y)
public static java.lang.String getYear(java.util.Date _date)
public static java.lang.String getWeekOfYear(java.util.Date _date)
public static java.util.Date addMillisecond(java.util.Date d)
d
- the date to add a millisecond topublic static java.util.Date subtractMillisecond(java.util.Date d)
d
- the date to subtract a millisecond frompublic static java.util.Date addMilliseconds(java.util.Date d, int ms)
d
- the date to add the given number of milliseconds toms
- the number of milliseconds to addpublic static java.util.Date subtractMilliseconds(java.util.Date d, int ms)
d
- the date to subtract the given number of milliseconds fromms
- the number of milliseconds to subtractpublic static java.util.Date addSecond(java.util.Date d)
d
- the date to add a second topublic static java.util.Date subtractSecond(java.util.Date d)
d
- the date to subtract a second frompublic static java.util.Date addSeconds(java.util.Date d, int seconds)
d
- the date to add the given number of seconds toseconds
- the number of seconds to addpublic static java.util.Date subtractSeconds(java.util.Date d, int seconds)
d
- the date to subtract the given number of seconds fromseconds
- the number of seconds to subtractpublic static java.util.Date addMinute(java.util.Date d)
d
- the date to add a minute topublic static java.util.Date subtractMinute(java.util.Date d)
d
- the date to subtract a minute frompublic static java.util.Date addMinutes(java.util.Date d, int minutes)
d
- the date to add the given number of minutes tominutes
- the number of minutes to addpublic static java.util.Date subtractMinutes(java.util.Date d, int minutes)
d
- the date to subtract the given number of minutes fromminutes
- the number of minutes to subtractpublic static java.util.Date addHour(java.util.Date d)
d
- the date to add an hour topublic static java.util.Date subtractHour(java.util.Date d)
d
- the date to subtract an hour frompublic static java.util.Date addHours(java.util.Date d, int hours)
d
- the date to add the given number of hours tohours
- the number of hours to addpublic static java.util.Date subtractHours(java.util.Date d, int hours)
d
- the date to subtract the given number of hours fromhours
- the number of hours to subtractpublic static java.util.Date addDay(java.util.Date d)
d
- the date to add a day topublic static java.util.Date subtractDay(java.util.Date d)
d
- the date to subtract a day frompublic static java.util.Date addDays(java.util.Date d, int days)
d
- the date to add the given number of days todays
- the number of days to addpublic static java.util.Date subtractDays(java.util.Date d, int days)
d
- the date to subtract the given number of days fromdays
- the number of days to subtractpublic static java.util.Date addWeek(java.util.Date d)
d
- the date to add a week topublic static java.util.Date subtractWeek(java.util.Date d)
d
- the date to subtract a week frompublic static java.util.Date addWeeks(java.util.Date d, int weeks)
d
- the date to add the given number of weeks toweeks
- the number of weeks to addpublic static java.util.Date subtractWeeks(java.util.Date d, int weeks)
d
- the date to subtract the given number of weeks fromweeks
- the number of weeks to subtractpublic static java.util.Date addMonth(java.util.Date d)
d
- the date to add a month topublic static java.util.Date subtractMonth(java.util.Date d)
d
- the date to subtract a month frompublic static java.util.Date addMonths(java.util.Date d, int months)
d
- the date to add the given number of months tomonths
- the number of months to addpublic static java.util.Date subtractMonths(java.util.Date d, int months)
d
- the date to subtract the given number of months frommonths
- the number of months to subtractpublic static java.util.Date addYear(java.util.Date d)
d
- the date to add a year topublic static java.util.Date subtractYear(java.util.Date d)
d
- the date to subtract a year frompublic static java.util.Date addYears(java.util.Date d, int years)
d
- the date to add the given number of years toyears
- the number of years to addpublic static java.util.Date subtractYears(java.util.Date d, int years)
d
- the date to subtract the given number of years fromyears
- the number of years to subtractpublic static java.util.Date addToDate(java.util.Date d, java.util.concurrent.TimeUnit unit, int toAdd)
d
- the date to add the given amount tounit
- the unit of the given amounttoAdd
- the amount of the given TimeUnit to addpublic static java.util.Date addToDate(java.util.Date d, int arg0, int toAdd)
d
- the date to add the given number toarg0
- the type of Date-Part to addtoAdd
- the number of Date-Part to addpublic static java.util.Date subtractFromDate(java.util.Date d, int arg0, int toSubtract)
d
- the date to subtract the given number fromarg0
- the type of Date-Part to subtracttoAdd
- the number of Date-Part to subtract (positive value)public static javax.xml.datatype.Duration datesToDurationMillis(java.util.Date from, java.util.Date till)
from
- a Date objecttill
- another Date objectpublic static javax.xml.datatype.Duration timeDistance(java.util.Calendar reference, java.util.Calendar intervalStart, java.util.Calendar intervalEnd)
#calculateTimeDistance(Calender, Calendar)
reference
- mandatory reference date, e.g. 'now'intervalStart
- mandatory, marks the start of the time intervalintervalEnd
- mandatory, marks the end of the time intervalpublic static javax.xml.datatype.Duration timeDistance(java.util.Calendar referenceDate, java.util.Calendar targetDate)
Calculates the duration from a referrenced point in time to a target time. The returned duration is negative, if the referenceDate is before the targetDate. The value orients itself on a naive understanding of time.
Examples:referenceDate
- mandatory Calendar object of the reference datetargetDate
- mandatory Calendar object, marks the start of the time intervalpublic static javax.xml.datatype.Duration timeDistance(java.util.Date reference, java.util.Date intervalStart, java.util.Date intervalEnd)
#calculateTimeDistance(Calender, Calendar, Calendar)
public static javax.xml.datatype.Duration timeDistance(java.util.Date referenceDate, java.util.Date targetDate)
#calculateTimeDistance(Calender, Calendar)
public static long nanosTo(long nanos, java.util.concurrent.TimeUnit timeUnit)
nanos
- a long containing the nanoseconds to converttimeUnit
- an TimeUnit specifying the unit to convert topublic static java.util.Date setTime(java.util.Date _date, int _hours, int _minutes, int _seconds, int _ms)
Date
with the
time values set to the given time. If any of the values is < 0 it will
not be set.public static java.util.Date setMaxTime(java.util.Date date)
public static java.math.BigDecimal minutesToHours(java.math.BigDecimal mins)
public static java.math.BigDecimal minutesToHours(java.math.BigDecimal mins, int precision)
public static java.math.BigDecimal minutesToHours(java.lang.Long mins)
public static java.math.BigDecimal minutesToHours(java.lang.Long mins, int precision)
public static java.math.BigDecimal minutesToSeconds(java.math.BigDecimal mins)
public static java.lang.Long minutesToSeconds(java.lang.Long mins)
public static java.math.BigDecimal toMinutes(java.lang.Long ts)
public static java.math.BigDecimal toMinutes(java.lang.Long ts, int precision)
public static java.math.BigDecimal toHours(java.lang.Long ts)
public static java.math.BigDecimal toHours(java.lang.Long ts, int precision)
public static java.time.ZonedDateTime toZonedDateTime(java.util.Date d)
public static java.time.ZonedDateTime toZonedDateTime(java.util.Date d, java.time.ZoneId timezone)
public static java.time.LocalDate toLocalDate(java.util.Date d)
public static java.time.LocalDate toLocalDate(java.util.Date d, java.time.ZoneId timezone)
public static java.time.LocalTime toLocalTime(java.util.Date d)
public static java.time.LocalTime toLocalTime(java.util.Date d, java.time.ZoneId timezone)
public static java.time.LocalDateTime toLocalDateTime(java.util.Date d)
public static java.time.LocalDateTime toLocalDateTime(java.util.Date d, java.time.ZoneId timezone)
public static java.time.OffsetDateTime toOffsetDateTime(java.util.Date d)
public static java.time.OffsetDateTime toOffsetDateTime(java.util.Date d, java.time.ZoneId timezone)
public static int getHoursPerYear(int year)
public static int getDaysPerYear(int year)
public static int getDaysPerMonth(java.util.Date d)
d
- the date you want the number of days ofpublic static int getDaysPerMonth(int year, int month)
month
- the month of which you want the number of days ofyear
- the year this month lies inpublic static long countDaysInYears(int yearFrom, int yearTo)
public static int coveredTimespanToDays(TimespanI ts)
ts
- the TimespanI to count the days inroundUp
- if true the number of days is rounded up, defaults to truepublic static int coveredTimespanToDays(TimespanI ts, boolean roundUp)
public static int coveredTimespanToDays(java.util.Date d1, java.util.Date d2)
ts
- the TimespanI to count the days ind1
- the start date of the timespand2
- the end date of the timespanroundUp
- if true the number of days is rounded up, defaults to truepublic static int coveredTimespanToDays(java.util.Date d1, java.util.Date d2, boolean roundUp)
public static int countDays(TimespanI ts)
ts
- the TimespanI to count the days inpublic static int countDays(java.util.Date d1, java.util.Date d2)
d1
- the date to start from, ignoring timed2
- the date to end at, ignoring timepublic static long coveredTimespanInFullMinutes(java.util.Date d1, java.util.Date d2)
d1
- the start date of the timespand2
- the end date of the timespanpublic static int coveredTimespanToDays(java.util.Calendar c1, java.util.Calendar c2)
c1
- the start date as calendar object to calculate timespanc2
- the end date as calendar object to calculate timespanroundUp
- if true the number of days is rounded up, defaults to truepublic static int coveredTimespanToDays(java.util.Calendar c1, java.util.Calendar c2, boolean roundUp)
public static int getNumberOfMonths(java.util.Date from, java.util.Date till)
from
- the start date of the timespantill
- the end date of the timespanpublic static int getNumberOfMonths(java.util.Calendar c1, java.util.Calendar c2)
c1
- the start date of the timespan as calendar objectc2
- the end date of the timespan as calendar objectpublic static java.math.BigDecimal getFractionOfMonth(java.util.Date startDayInMonth, java.util.Date endDayInMonth)
startDayInMonth
- the start date of the timespan to calculate the month fraction forendDay
- the end date of the timespan to calculate the month fraction forprecision
- the desired precision of the month fraction to calculate, defaults to 10public static java.math.BigDecimal getFractionOfMonth(java.util.Date startDayInMonth, java.util.Date endDayInMonth, int precision)
public static java.util.Date getFirstDayOfYear(int year)
public static java.util.Date getLastDayOfYear(int year)
public static java.util.Date getFirstDayOfYear(java.util.Date d)
public static java.util.Date getFirstDayOfCurrentYear()
public static java.util.Date getLastDayOfYear(java.util.Date d)
public static int getNumberOfTouchedYears(java.util.Date start, java.util.Date stop)
public static java.util.Date getFirstDayOfMonth(java.util.Date d)
stripTime
- if true the returned date has no time, i.e. 00:00,
otherwise the time of the passed date is preserved; defaults to truepublic static java.util.Date getFirstDayOfMonth(java.util.Date d, boolean stripTime)
public static java.util.Date getFirstDayOfPreviousMonth(java.util.Date d)
stripTime
- if true the returned date has no time, i.e. 00:00,
otherwise the time of the passed date is preserved; defaults to truepublic static java.util.Date getFirstDayOfPreviousMonth(java.util.Date d, boolean stripTime)
public static java.util.Date getFirstDayOfNextMonth(java.util.Date d)
stripTime
- if true the returned date has no time, i.e. 00:00,
otherwise the time of the passed date is preserved; defaults to truepublic static java.util.Date getFirstDayOfNextMonth(java.util.Date d, boolean stripTime)
public static boolean isFirstDayOfMonth(java.util.Date d)
d
- The date to check.public static java.util.Date getLastDayOfMonth(java.util.Date d)
stripTime
- if true the returned date has no time, i.e. 00:00, otherwise the time of the passed date is preserved; default to truepublic static java.util.Date getLastDayOfMonth(java.util.Date d, boolean stripTime)
public static java.util.Date getLastDayOfPreviousMonth(java.util.Date d)
stripTime
- if true the returned date has no time, i.e. 00:00,
otherwise the time of the passed date is preserved; defaults to truepublic static java.util.Date getLastDayOfPreviousMonth(java.util.Date d, boolean stripTime)
public static java.util.Date getLastDayOfNextMonth(java.util.Date d)
stripTime
- if true the returned date has no time, i.e. 00:00,
otherwise the time of the passed date is preserved; defaults to truepublic static java.util.Date getLastDayOfNextMonth(java.util.Date d, boolean stripTime)
public static boolean isLastDayOfMonth(java.util.Date d)
d
- The date to check.public static boolean isLastDayOfMonth(java.util.Calendar cal)
cal
- The Calendar to check.public static boolean isFirstDayOfYear(java.util.Date d)
d
- The date to check.public static boolean isLastDayOfYear(java.util.Date d)
d
- The date to check.public static long getTimeZoneChangesIn1Day(java.util.Date d)
the
- date to check of a time zone change for, nonnull. Uses the current system default time zone by default.public static long getTimeZoneChangesIn1Day(java.time.ZonedDateTime zdtstart)
public static boolean getIstZeitumstellungWinterNachSommer(java.util.Date d)
public static boolean getIstZeitumstellungSommerNachWinter(java.util.Date d)
public static java.util.Calendar getDateWithoutTime(java.util.Calendar c)
c
- the calendar to copypublic static java.util.Calendar getTimeWithoutDate(java.util.Calendar c)
c
- the calendar to copypublic static java.util.Date stripTime(java.util.Date d)
d
- the date to copypublic static java.util.Date stripDate(java.util.Date d)
d
- the date to copypublic static java.util.Calendar stripTime(java.util.Calendar c)
c
- the calendar to copypublic static java.util.Calendar stripDate(java.util.Calendar c)
c
- the calendar to copypublic static java.util.Date stripMinutes(java.util.Date _d)
_d
- the date to copypublic static java.util.Date stripSeconds(java.util.Date _d)
_d
- the date to copypublic static java.util.Date stripMillis(java.util.Date _d)
_d
- the date to copypublic static java.util.Date stripX(java.util.Date _d, java.lang.String _mode)
_d
- the date to copy, nullable._mode
- the part of the date to strip ofpublic static java.util.Calendar stripX(java.util.Calendar _c, java.lang.String _mode)
_c
- the calendar to copy_mode
- the part of the calendar to strippublic static java.util.Date joinDates(java.util.Date _date, java.util.Date _time)
_date
- the date take date part from_time
- the date take time part frompublic static java.lang.Long getNumberOfMillis(java.util.Date d1, java.util.Date d2)
d1
- the start date to calculate timespand2
- the end date to calculate timespanpublic static java.util.List<java.util.Date> getDateObjects(java.util.Date from, java.util.Date till)
Date
objects for a period between from and till parameters.
Corresponds to the groovy method (from..till).toList()
.
e.g.
from = L10n.parseISODate('2023-02-01')
till = L10n.parseISODate('2023-02-05')
result: [2023-02-01 00:00:00, 2023-02-02 00:00:00, 2023-02-03 00:00:00, 2023-02-04 00:00:00, 2023-02-05 00:00:00]
or
from = L10n.parseISODate('2023-02-01 22:20:00)
till = L10n.parseISODate('2023-03-05 01:43:25')
result: [2023-02-01 22:20:00, 2023-02-02 22:20:00, 2023-02-03 22:20:00, 2023-02-04 22:20:00]from
- start datetill
- end datepublic static java.util.List<java.lang.String> getFormatsWithExamples(java.util.Collection<java.lang.String> formats)
This method is designed to be user-friendly by not only providing the formats but also showing a valid input string for the current date in each format. This can help users understand how to use each format correctly.
formats
- a collection of date format strings to be demonstrated with examples.Copyright © 2000-2025 OAshi S.à r.l. All Rights Reserved.