Uses of Class
org.springframework.data.elasticsearch.core.Range.Bound
Packages that use Range.Bound
-
Uses of Range.Bound in org.springframework.data.elasticsearch.core
Methods in org.springframework.data.elasticsearch.core that return Range.BoundModifier and TypeMethodDescriptionstatic Range.Bound<Double>Range.Bound.exclusive(double value) Creates a boundary excludingvalue.static Range.Bound<Float>Range.Bound.exclusive(float value) Creates a boundary excludingvalue.static Range.Bound<Integer>Range.Bound.exclusive(int value) Creates a boundary excludingvalue.static Range.Bound<Long>Range.Bound.exclusive(long value) Creates a boundary excludingvalue.static <T> Range.Bound<T>Range.Bound.exclusive(T value) Creates a boundary excludingvalue.Range.getLowerBound()Deprecated, for removal: This API element is subject to removal in a future version.Range.getUpperBound()Deprecated, for removal: This API element is subject to removal in a future version.static Range.Bound<Double>Range.Bound.inclusive(double value) Creates a boundary includingvalue.static Range.Bound<Float>Range.Bound.inclusive(float value) Creates a boundary includingvalue.static Range.Bound<Integer>Range.Bound.inclusive(int value) Creates a boundary includingvalue.static Range.Bound<Long>Range.Bound.inclusive(long value) Creates a boundary includingvalue.static <T> Range.Bound<T>Range.Bound.inclusive(T value) Creates a boundary includingvalue.static <T> Range.Bound<T>Range.Bound.unbounded()Creates an unboundedRange.Bound.Methods in org.springframework.data.elasticsearch.core with parameters of type Range.BoundModifier and TypeMethodDescriptionstatic <T> Range<T>Range.leftUnbounded(Range.Bound<T> to) Deprecated, for removal: This API element is subject to removal in a future version.Creates a left-unboundedRange(the left bound set tounbounded()) with the given right bound.static <T> Range<T>Range.of(Range.Bound<T> lowerBound, Range.Bound<T> upperBound) Deprecated, for removal: This API element is subject to removal in a future version.Creates a newRangewith the given lower and upper bound.static <T> Range<T>Range.rightUnbounded(Range.Bound<T> from) Deprecated, for removal: This API element is subject to removal in a future version.Creates a right-unboundedRange(the right bound set tounbounded()) with the given left bound.