Package com.day.cq.search.facets.buckets
Class ValueRangeBucket
java.lang.Object
com.day.cq.search.facets.buckets.SimpleBucket
com.day.cq.search.facets.buckets.PredefinedBucket
com.day.cq.search.facets.buckets.ValueRangeBucket
- All Implemented Interfaces:
Bucket
ValueRangeBucket is a bucket that stands for an interval of
values.
- Since:
- 5.2
-
Constructor Summary
ConstructorsConstructorDescriptionValueRangeBucket(String name, Comparable from, boolean fromIncluded, Comparable to, boolean toIncluded, Predicate predicate) Creates an interval matching bucket. -
Method Summary
Modifier and TypeMethodDescriptionvoidacceptValue(Value value) Accepts thevalueand increments the counter of this bucket if thevaluematches this buckets definition.getFrom()getTo()Methods inherited from class com.day.cq.search.facets.buckets.SimpleBucket
getCount, getPredicate, getValue, increment
-
Constructor Details
-
ValueRangeBucket
public ValueRangeBucket(String name, Comparable from, boolean fromIncluded, Comparable to, boolean toIncluded, Predicate predicate) Creates an interval matching bucket.- Parameters:
name- name of this bucket (for display)from- lower end of intervalfromIncluded- iftrue, will include the from value in the interval, ie. use>=to- upper end of intervaltoIncluded- iftrue, will include the to value in the interval, ie. use<=predicate- the predicate representing this bucket
-
-
Method Details
-
getFrom
- Returns:
- the lower bound or
nullif none is set.
-
getTo
- Returns:
- the upper bound or
nullif none is set.
-
acceptValue
Accepts thevalueand increments the counter of this bucket if thevaluematches this buckets definition.- Specified by:
acceptValuein classPredefinedBucket- Parameters:
value- the value to accept.- Throws:
RepositoryException- if an error occurs while reading from the repository.
-