N - The type of the next step.F - The type of the targeted field.public interface RangeAggregationRangeStep<N extends RangeAggregationRangeMoreStep<?,?,F>,F>
| Modifier and Type | Method and Description |
|---|---|
default N |
range(F lowerBound,
F upperBound)
Add a bucket for the range
[lowerBound, upperBound) (lower bound included, upper bound excluded),
or (lowerBound, upperBound) (both bounds excluded) if the lower bound is -Infinity. |
N |
range(Range<? extends F> range)
Add a bucket for given range.
|
N |
ranges(Collection<? extends Range<? extends F>> ranges)
Add one bucket for each of the given ranges.
|
default N range(F lowerBound, F upperBound)
[lowerBound, upperBound) (lower bound included, upper bound excluded),
or (lowerBound, upperBound) (both bounds excluded) if the lower bound is -Infinity.lowerBound - The lower bound of the range.upperBound - The upper bound of the range.N range(Range<? extends F> range)
range - The range to add.RangeN ranges(Collection<? extends Range<? extends F>> ranges)
ranges - The ranges to add.RangeCopyright © 2006-2019 Red Hat, Inc. and others. Licensed under the GNU Lesser General Public License (LGPL), version 2.1 or later.