Uses of Class
org.apache.commons.lang3.Range

Packages that use Range
org.apache.commons.lang3 Provides highly reusable static utility methods, chiefly concerned with adding value to the java.lang classes. 
 

Uses of Range in org.apache.commons.lang3
 

Methods in org.apache.commons.lang3 that return Range
static
<T extends Comparable<T>>
Range<T>
Range.between(T element1, T element2)
          Constructs a new Range with the specified minimum and maximum values (both inclusive).
static
<T> Range<T>
Range.between(T element1, T element2, Comparator<T> c)
          Constructs a new Range with the specified minimum and maximum values (both inclusive).
static
<T extends Comparable<T>>
Range<T>
Range.is(T element)
          Constructs a new Range using the specified element as both the minimum and maximum in this range.
static
<T> Range<T>
Range.is(T element, Comparator<T> c)
          Constructs a new Range using the specified element as both the minimum and maximum in this range.
 

Methods in org.apache.commons.lang3 with parameters of type Range
 boolean Range.containsRange(Range<T> range)
          Tests whether the specified range occurs entirely within this range.
 boolean Range.overlapsRange(Range<T> range)
          Tests whether the specified range overlaps with this range.
 



Copyright © 2001-2010 The Apache Software Foundation. All Rights Reserved.