edu.neu.ccs.filter
Class MinimumBoundFilter.BigInteger
java.lang.Object
edu.neu.ccs.filter.NumericFilter
edu.neu.ccs.filter.BoundFilter
edu.neu.ccs.filter.MinimumBoundFilter
edu.neu.ccs.filter.MinimumBoundFilter.BigInteger
- All Implemented Interfaces:
- Cloneable, Serializable, StringableFilter
- Enclosing class:
- MinimumBoundFilter
- public static class MinimumBoundFilter.BigInteger
- extends MinimumBoundFilter
Minimum bound filter representing
an integer lower bound of arbitrary precision.
- Since:
- 1.0
- Version:
- 2.1
- See Also:
- Serialized Form
| Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
minimum
protected BigInteger minimum
- The minimum bound for the range.
MinimumBoundFilter.BigInteger
public MinimumBoundFilter.BigInteger(BigInteger min)
- Constructs an inclusive range
bounded by the given minimum value.
- Parameters:
min - the minimum value for the range
MinimumBoundFilter.BigInteger
public MinimumBoundFilter.BigInteger(BigInteger min,
boolean isInclusive)
- Constructs an inclusive or exclusive range
bounded by the given minimum value.
- Parameters:
min - the minimum value for the rangeisInclusive - whether or not the range is inclusive
filterStringable
public Stringable filterStringable(Stringable obj)
throws FilterException
- Returns the given object
if it satisfies the bound for this range.
- Specified by:
filterStringable in interface StringableFilter- Overrides:
filterStringable in class NumericFilter
- Parameters:
obj - the object to be filtered
- Throws:
FilterException - if the object
is out of bounds
setMinimum
public void setMinimum(BigInteger min)
- Sets the minimum bound for the range
to the given value.
If
null the value is not changed.
- Parameters:
min - the desired minimum bound- See Also:
getMinimum()
getMinimum
public BigInteger getMinimum()
- Returns the minimum bound for this range.
- See Also:
setMinimum(BigInteger)