Class IntRangeFilterElement
- java.lang.Object
-
- com.puppycrawl.tools.checkstyle.filters.IntRangeFilterElement
-
- All Implemented Interfaces:
IntFilterElement
class IntRangeFilterElement extends Object implements IntFilterElement
This filter element is immutable and accepts an Integer in a range.
-
-
Field Summary
Fields Modifier and Type Field Description private Integer
lowerBound
Lower bound of the range.private Integer
upperBound
Upper bound of the range.
-
Constructor Summary
Constructors Constructor Description IntRangeFilterElement(int lowerBound, int upperBound)
Constructs aIntRangeFilterElement
with a lower bound and an upper bound for the range.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
accept(int intValue)
Determines whether or not a filtered Integer is accepted.boolean
equals(Object other)
int
hashCode()
-
-
-
Field Detail
-
lowerBound
private final Integer lowerBound
Lower bound of the range.
-
upperBound
private final Integer upperBound
Upper bound of the range.
-
-
Constructor Detail
-
IntRangeFilterElement
IntRangeFilterElement(int lowerBound, int upperBound)
Constructs aIntRangeFilterElement
with a lower bound and an upper bound for the range.- Parameters:
lowerBound
- the lower bound of the range.upperBound
- the upper bound of the range.
-
-
Method Detail
-
accept
public boolean accept(int intValue)
Description copied from interface:IntFilterElement
Determines whether or not a filtered Integer is accepted.- Specified by:
accept
in interfaceIntFilterElement
- Parameters:
intValue
- the Integer to filter.- Returns:
- true if the intValue is accepted.
-
-