Package oracle.webcenter.search.refine
Class DateRefinement
- All Implemented Interfaces:
Serializable
,Cloneable
A Calendar based refinement that captures a lot of the logic dates go
through when used as Refiners for a search.
- Since:
- 11.1.1.0.0 Beta 2
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic class
static interface
Nested classes/interfaces inherited from class oracle.webcenter.search.refine.Refinement
Refinement.Clause<T>
-
Constructor Summary
ConstructorsConstructorDescriptionDateRefinement
(Calendar date, int count, DateRefinement.DateRefinementListener listener) Constructs a DateRefinement with one single Calendar value and the number of times that Calendar value shows up.DateRefinement
(List<Refinement.Clause<Calendar>> clauses, int count, DateRefinement.DateRefinementListener listener) Constructs a DateRefinement with a List of clauses and a count. -
Method Summary
Modifier and TypeMethodDescriptionprotected void
addAttributePredicate
(List<Predicate> children, AttributePredicate<Calendar> newPredicate) Adds an attribute predicate to the list of Predicate objects held within a top-level ComplexPredicate.protected void
Builds the name of the DateRefinement with a Calendar by formatting it and setting the name to be that String value.protected AttributePredicate<Calendar>
createPredicate
(QName name, String comparator, Calendar value) final Calendar
static final Calendar
getCalendarSinceNumDays
(Calendar cal, TimeZone timeZone) Get Calendar object for query execution of SinceNumDays comparatorReturns the conjunction operator for this DateRefinement.static final int
getNumDays
(Date date) Get number of days from Date object of operand of SinceNumDays comparatorstatic final Calendar
getNumDaysAsCalendar
(int num) Get Calendar object for operand of SinceNumDays comparatorgetYear()
If refinement is a yearly refinement, return a calendar object of the year.final boolean
Returns whether the calendar value passed in matches the criteria held in this Refinement.final boolean
Matches a Calendar value with a criterion made up of a comparator and another Calendar.protected List<Refinement.Clause<Calendar>>
initClauses
(Calendar value, String comparator) boolean
Is this refinement accumulative over another refinement?boolean
isDaily()
Is calendar type daily?boolean
Is calendar type monthly?boolean
Is calender type since num days?boolean
isYearly()
Is calendar type yearly?void
setAccumulative
(boolean value) Set the accumulative characteristic of this refinementvoid
setCalendarType
(int value) Set calendar typeMethods inherited from class oracle.webcenter.search.refine.Refinement
buildName, buildName, getClauses, getCount, getName, getValue, increment, increment, isCurrent, refine, setCount, setCurrent, setName, toString
-
Constructor Details
-
DateRefinement
public DateRefinement(List<Refinement.Clause<Calendar>> clauses, int count, DateRefinement.DateRefinementListener listener) Constructs a DateRefinement with a List of clauses and a count.- Parameters:
clauses
- the List off Refinement.Clause objects to be used in this Refinement.count
- the number of results expected when this DateRefinement is appliedlistener
- the implementation class of the listener interface
-
DateRefinement
Constructs a DateRefinement with one single Calendar value and the number of times that Calendar value shows up.- Parameters:
date
- the Calendar value based on which an EQUALS clause is builtcount
- the number of results expected when this DateRefinementlistener
- the implementation class of the listener interface is applied
-
-
Method Details
-
initClauses
- Overrides:
initClauses
in classRefinement<Calendar>
-
isAccumulative
public boolean isAccumulative()Is this refinement accumulative over another refinement? -
setAccumulative
public void setAccumulative(boolean value) Set the accumulative characteristic of this refinement -
setCalendarType
public void setCalendarType(int value) Set calendar type- Parameters:
value
- Calendar field constant
-
isYearly
public boolean isYearly()Is calendar type yearly? -
isMonthly
public boolean isMonthly()Is calendar type monthly? -
isDaily
public boolean isDaily()Is calendar type daily? -
isSinceNumDays
public boolean isSinceNumDays()Is calender type since num days? -
getYear
If refinement is a yearly refinement, return a calendar object of the year. -
createPredicate
protected AttributePredicate<Calendar> createPredicate(QName name, String comparator, Calendar value) - Overrides:
createPredicate
in classRefinement<Calendar>
-
buildName
Builds the name of the DateRefinement with a Calendar by formatting it and setting the name to be that String value.- Specified by:
buildName
in classRefinement<Calendar>
- Parameters:
calendar
- the Calendar value to use to build the name
-
getConjunctionOp
Returns the conjunction operator for this DateRefinement.- Specified by:
getConjunctionOp
in classRefinement<Calendar>
- Returns:
- a ConjunctionOp value that is either an And or an Or.
-
addAttributePredicate
protected void addAttributePredicate(List<Predicate> children, AttributePredicate<Calendar> newPredicate) throws ContradictionException Adds an attribute predicate to the list of Predicate objects held within a top-level ComplexPredicate. The assumption on the top-level ComplexPredicate is that it serves only one Refiner and therefore in this case, we only care about the DateRefiner.- Overrides:
addAttributePredicate
in classRefinement<Calendar>
- Parameters:
children
- a List of child Predicates coming from a ComplexPredicate dedicated to a DateRefiner.newPredicate
- the new Predicate to be added to the list of child Predicates.- Throws:
ContradictionException
-
hasMatch
Returns whether the calendar value passed in matches the criteria held in this Refinement.- Specified by:
hasMatch
in classRefinement<Calendar>
- Parameters:
value
- the Calendar value to be matched.- Returns:
- true if the value falls within the range defined by this Refinement.
-
hasMatch
Matches a Calendar value with a criterion made up of a comparator and another Calendar.- Parameters:
value
- the value to comparecomparator
- the comparator to useclauseValue
- the value to compare against- Returns:
- true if the value compares positively with the comparator and the clause value.
-
getNumDaysAsCalendar
Get Calendar object for operand of SinceNumDays comparator- Parameters:
num
- number of days- Returns:
- Calendar representing the operand of SinceNumDays comparator
-
getCalendarSinceNumDays
-
getCalendarSinceNumDays
Get Calendar object for query execution of SinceNumDays comparator- Parameters:
cal
- representing the operand of SinceNumDays comparator- Returns:
- Calendar representing the calendar for SinceNumDays comparator
-
getNumDays
Get number of days from Date object of operand of SinceNumDays comparator- Parameters:
date
- Date object of operand of SinceNumDays comparatorint
- value of NumDays
-