public interface TimespanI
Modifier and Type | Field and Description |
---|---|
static java.lang.String |
$0 |
static java.lang.String |
L10N_KEY_ERR_INCONSISTENT_DATES |
static java.lang.String |
L10N_KEY_ERR_INDET_NUMBER_OVERLAPPING |
static java.lang.String |
L10N_KEY_ERR_UNWANTED_OPEN_TIMESPAN |
Modifier and Type | Method and Description |
---|---|
default void |
checkConsistentDates()
Checks if DateStart is not after DateEnd and throws an IllegalArgumentException otherwise.
|
static void |
checkConsistentDates(java.util.Date from,
java.util.Date till)
Checks if the passed starting date is not later than the passed ending date.
|
static void |
checkConsistentDates(java.util.Date from,
java.util.Date till,
boolean signalIllegalState) |
default boolean |
checkIsClosedTimespanWithConsistentDates()
Checks whether this Timespan is closed (both starting and ending dates are defined)
and whether these dates are consistent.
|
default boolean |
checkIsClosedTimespanWithConsistentDates(boolean doThrowIfOpen) |
default boolean |
coversAtMostOneMonth()
Returns true if this TimespanI covers at most one month.
|
default boolean |
endsAfterOrOnStartOf(TimespanI otherTS) |
default boolean |
endsAfterOrOnStartOf(TimespanI otherTS,
boolean sameDayCounts) |
default boolean |
equalDates(TimespanI otherTS) |
static boolean |
equalDates(TimespanI oneTS,
TimespanI otherTS) |
java.util.Date |
getDateEnd() |
java.util.Date |
getDateStart() |
default boolean |
hasUndefinedTimespan()
Returns true if the start and end date of this TimespanI are null.
|
default boolean |
isAlwaysValid() |
default boolean |
isCompletelyValidDuring(java.util.Date from,
java.util.Date upto) |
default boolean |
isCompletelyValidDuring(TimespanI during)
Checks if this TimespanI is valid during the passed TimespanI.
|
default boolean |
isPartiallyValidDuring(java.util.Date from,
java.util.Date upto)
Checks if this TimespanI is valid at any time between the passed dates.
|
default boolean |
isPartiallyValidDuring(java.util.Date from,
java.util.Date upto,
boolean ignoreTime) |
default boolean |
isPartiallyValidDuring(TimespanI during)
Checks if this TimespanI is valid at any time during the timespan defined by the passed TimespanI.
|
default boolean |
isPartiallyValidDuring(TimespanI during,
boolean ignoreTime) |
default boolean |
isValid()
Checks if this TimespanI is valid at the current time.
|
default boolean |
isValidAt(java.util.Date d)
Checks if this TimespanI is valid on the passed date (and optionally at the time
defined by the passed Date object).
|
default boolean |
isValidAt(java.util.Date d,
boolean ignoreTime) |
default boolean |
isValidAtOrAfter(java.util.Date d) |
default boolean |
isValidAtOrBefore(java.util.Date d) |
default boolean |
isValidFromStartOfTime() |
default boolean |
isValidOn(java.util.Date d)
Checks if this TimespanI is valid on the passed date.
|
default boolean |
isValidUntilEndOfTime() |
default int |
numberOfDays()
Returns the number of days this TimespanI covers or -1 if no number of days can be determined because at least one end is open.
|
default int |
overlappingDaysWith(TimespanI otherTS)
Returns the number of days this TimespanI does overlap with the passed TimespanI.
|
default boolean |
overlapsWith(TimespanI other) |
default boolean |
overlapsWith(TimespanI other,
boolean sameDayOverlaps) |
default boolean |
startsBeforeOrOnEndOf(TimespanI otherTS) |
default boolean |
startsBeforeOrOnEndOf(TimespanI otherTS,
boolean sameDayCounts) |
static final java.lang.String $0
static final java.lang.String L10N_KEY_ERR_INCONSISTENT_DATES
static final java.lang.String L10N_KEY_ERR_INDET_NUMBER_OVERLAPPING
static final java.lang.String L10N_KEY_ERR_UNWANTED_OPEN_TIMESPAN
static void checkConsistentDates(java.util.Date from, java.util.Date till)
from
- the starting date to checktill
- the ending date to checksignalIllegalState
- a boolean determining if an IllegalStateException
shall be raised instead of an IllegalArgumentException in case the check
fails (defaults to false)java.lang.IllegalArgumentException
- if the check fails and signalIllegalState
was passed as false (default)java.lang.IllegalStateException
- if the check fails and signalIllegalState
was passed as truestatic void checkConsistentDates(java.util.Date from, java.util.Date till, boolean signalIllegalState)
java.util.Date getDateStart()
java.util.Date getDateEnd()
default void checkConsistentDates()
default boolean checkIsClosedTimespanWithConsistentDates()
doThrowIfOpen
- If set to true, an IllegalArgumentException will be thrown
if the Timespan is open at either end.java.lang.IllegalArgumentException
- If the starting and ending dates are inconsistent,
which is never desirable, or if the Timespan is open at any end and 'doThrowIfOpen'
is set to true.default boolean checkIsClosedTimespanWithConsistentDates(boolean doThrowIfOpen)
default boolean coversAtMostOneMonth()
default boolean isValid()
default boolean isValidOn(java.util.Date d)
d
- the date for which we test for validity of the TimespanIdefault boolean isValidAt(java.util.Date d)
d
- the date for which we test for validity of the TimespanIignoreTime
- a boolean determining if the time shall be ignored in the comparison,
defaults to truedefault boolean isValidAt(java.util.Date d, boolean ignoreTime)
default boolean isPartiallyValidDuring(TimespanI during)
default boolean isPartiallyValidDuring(TimespanI during, boolean ignoreTime)
default boolean isPartiallyValidDuring(java.util.Date from, java.util.Date upto)
default boolean isPartiallyValidDuring(java.util.Date from, java.util.Date upto, boolean ignoreTime)
default boolean isCompletelyValidDuring(java.util.Date from, java.util.Date upto)
isCompletelyValidDuring(TimespanI)
default boolean isCompletelyValidDuring(TimespanI during)
during
- the TimespanI for which we test this TimespanI to be valid for completelydefault boolean isAlwaysValid()
default boolean isValidFromStartOfTime()
default boolean isValidUntilEndOfTime()
default boolean isValidAtOrBefore(java.util.Date d)
default boolean isValidAtOrAfter(java.util.Date d)
default boolean hasUndefinedTimespan()
default boolean overlapsWith(TimespanI other)
other
- the timespan to check for overlapping with this timespansameDayOverlaps
- whether a timespan that ends on the day the next one starts counts as overlappingdefault boolean overlapsWith(TimespanI other, boolean sameDayOverlaps)
default int overlappingDaysWith(TimespanI otherTS)
other
- the timespan to count the overlapping days with this timespan forjava.lang.IllegalArgumentException
- if the passed TimespanI and this instance are both unlimited and thus infinity would be the resultjava.lang.IllegalStateException
- if this instance or the passed TimespanI are not temporally consistentdefault int numberOfDays()
java.lang.IllegalStateException
- if this instance is not temporally consistentdefault boolean endsAfterOrOnStartOf(TimespanI otherTS)
default boolean endsAfterOrOnStartOf(TimespanI otherTS, boolean sameDayCounts)
default boolean startsBeforeOrOnEndOf(TimespanI otherTS)
default boolean startsBeforeOrOnEndOf(TimespanI otherTS, boolean sameDayCounts)
default boolean equalDates(TimespanI otherTS)
Copyright © 2000-2025 OAshi S.à r.l. All Rights Reserved.