Uses of Class
com.blazebit.persistence.view.filter.Range

Packages that use Range 
Package Description
com.blazebit.persistence.view.filter
Entity-View extension default attribute filters.
  • Uses of Range in com.blazebit.persistence.view.filter

    Methods in com.blazebit.persistence.view.filter that return Range 
    Modifier and Type Method Description
    static <T> Range<T> Range.between​(T lowerBound, T upperBound)
    Creates a range for the values between the given lower and upper bound, the given values inclusive.
    static <T> Range<T> Range.betweenExclusive​(T lowerBound, T upperBound)
    Creates a range for the values between the given lower and upper bound, the given values exclusive.
    static <T> Range<T> Range.ge​(T lowerBound)
    Creates a range for the values greater or equal than the given value.
    static <T> Range<T> Range.gt​(T lowerBound)
    Creates a range for the values greater than the given value.
    static <T> Range<T> Range.le​(T upperBound)
    Creates a range for the values smaller or equal than the given value.
    static <T> Range<T> Range.lt​(T upperBound)
    Creates a range for the values smaller than the given value.