Class DateRangeQuery.DateRange
- java.lang.Object
-
- com.atlassian.confluence.search.v2.Range<Date>
-
- com.atlassian.confluence.search.v2.query.DateRangeQuery.DateRange
-
- Enclosing class:
- DateRangeQuery
@Deprecated public static class DateRangeQuery.DateRange extends Range<Date>
Deprecated.since 5.10, useRange
insteadClass to represent a date range. Inclusion/exclusion of bounds is settable. Immutable.
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class com.atlassian.confluence.search.v2.Range
Range.Builder<T>
-
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description Date
getFrom()
Deprecated.Date
getTo()
Deprecated.-
Methods inherited from class com.atlassian.confluence.search.v2.Range
equals, hashCode, isIncludeFrom, isIncludeTo, range
-
-
-
-
Constructor Detail
-
DateRange
public DateRange(@Nullable Date from, @Nullable Date to, boolean includeFrom, boolean includeTo)
Deprecated.Construct a DateRange object.- Parameters:
from
- The date from which this date range begins (can be null)to
- The date on which this date range ends (can be null)includeFrom
- Whether or not the "from date" is inclusiveincludeTo
- Whether or not the "to date" is inclusive
-
-