Uses of Class
org.springframework.data.elasticsearch.core.Range

Packages that use Range
  • Uses of Range in org.springframework.data.elasticsearch.core

    Modifier and Type
    Method
    Description
    static <T> Range<T>
    Range.closed(T from, T to)
    Deprecated, for removal: This API element is subject to removal in a future version.
    Creates a new Range with inclusive bounds for both values.
    static <T> Range<T>
    Range.just(T value)
    Deprecated, for removal: This API element is subject to removal in a future version.
    Creates a new Range with the given value as sole member.
    static <T> Range<T>
    Range.leftOpen(T from, T to)
    Deprecated, for removal: This API element is subject to removal in a future version.
    Creates a new left-open Range, i.e. left exclusive, right inclusive.
    static <T> Range<T>
    Deprecated, for removal: This API element is subject to removal in a future version.
    Creates a left-unbounded Range (the left bound set to Range.Bound.unbounded()) 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 new Range with the given lower and upper bound.
    static <T> Range<T>
    Range.open(T from, T to)
    Deprecated, for removal: This API element is subject to removal in a future version.
    Creates a new Range with exclusive bounds for both values.
    static <T> Range<T>
    Range.rightOpen(T from, T to)
    Deprecated, for removal: This API element is subject to removal in a future version.
    Creates a new right-open Range, i.e. left inclusive, right exclusive.
    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-unbounded Range (the right bound set to Range.Bound.unbounded()) with the given left bound.
    static <T> Range<T>
    Range.unbounded()
    Deprecated, for removal: This API element is subject to removal in a future version.
    Returns an unbounded Range.