Uses of Class
com.vladmihalcea.hibernate.type.range.Range

Packages that use Range
com.vladmihalcea.hibernate.type.range   
 

Uses of Range in com.vladmihalcea.hibernate.type.range
 

Methods in com.vladmihalcea.hibernate.type.range that return Range
static Range<BigDecimal> Range.bigDecimalRange(String range)
          Creates the BigDecimal range from provided string:
static
<T extends Comparable<?>>
Range<T>
Range.closed(T lower, T upper)
          Creates the closed range with provided bounds.
static
<T extends Comparable<?>>
Range<T>
Range.closedInfinite(T lower)
          Creates the left-bounded, left-closed and right-unbounded range with provided lower bound.
static
<T extends Comparable<?>>
Range<T>
Range.closedOpen(T lower, T upper)
          Creates the left-closed, right-open range with provided bounds.
static
<R extends Comparable<R>>
Range<R>
Range.emptyRange(Class<R> clazz)
           
protected  Range PostgreSQLRangeType.get(ResultSet rs, String[] names, org.hibernate.engine.spi.SessionImplementor session, Object owner)
           
static
<T extends Comparable<?>>
Range<T>
Range.infinite(Class<T> cls)
          Creates the unbounded at both ends range with provided upper bound.
static
<T extends Comparable<?>>
Range<T>
Range.infiniteClosed(T upper)
          Creates the left-unbounded, right-bounded and right-closed range with provided upper bound.
static
<T extends Comparable<?>>
Range<T>
Range.infiniteOpen(T upper)
          Creates the left-unbounded, right-bounded and right-open range with provided upper bound.
static Range<Integer> Range.integerRange(String range)
          Creates the Integer range from provided string:
static Range<Long> Range.longRange(String range)
          Creates the Long range from provided string:
static
<T extends Comparable>
Range<T>
Range.ofString(String str, Range.Function<String,T> converter, Class<T> clazz)
           
static
<T extends Comparable<?>>
Range<T>
Range.open(T lower, T upper)
          Creates the open range with provided bounds.
static
<T extends Comparable<?>>
Range<T>
Range.openClosed(T lower, T upper)
          Creates the left-open, right-closed range with provided bounds.
static
<T extends Comparable<?>>
Range<T>
Range.openInfinite(T lower)
          Creates the left-bounded, left-open and right-unbounded range with provided lower bound.
 

Methods in com.vladmihalcea.hibernate.type.range with parameters of type Range
 boolean Range.contains(Range<T> range)
          Determines whether this range contains this point or not.
protected  void PostgreSQLRangeType.set(PreparedStatement st, Range range, int index, org.hibernate.engine.spi.SessionImplementor session)
           
 



Copyright © 2020. All rights reserved.