com.jidesoft.chart.util
Class IdentityFilter<T>
java.lang.Object
com.jidesoft.chart.util.IdentityFilter<T>
- All Implemented Interfaces:
- Filter<T>
public class IdentityFilter<T>
- extends Object
- implements Filter<T>
Implements the filter interface but does not filter out anything at all.
- Author:
- Simon White (swhite@catalysoft.com)
Method Summary |
boolean |
isValueFiltered(T other)
Specifies whether the object should be removed by the filter |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
IdentityFilter
public IdentityFilter()
isValueFiltered
public boolean isValueFiltered(T other)
- Description copied from interface:
Filter
- Specifies whether the object should be removed by the filter
- Specified by:
isValueFiltered
in interface Filter<T>
- Parameters:
other
- the input object to test for removal
- Returns:
- a boolean to indicate whether the object is to be removed
- See Also:
Filter.isValueFiltered(java.lang.Object)