public abstract class FilterAbstract<T> extends java.lang.Object implements Filter<T>
Constructor and Description |
---|
FilterAbstract() |
Modifier and Type | Method and Description |
---|---|
java.util.List<T> |
filter(java.util.List<T> elements)
Pass each element to method
shouldBeIgnored(Object) , if it returns true then the element should be filtered. |
abstract boolean |
shouldBeIgnored(T element) |
public java.util.List<T> filter(java.util.List<T> elements)
shouldBeIgnored(Object)
, if it returns true then the element should be filtered.public abstract boolean shouldBeIgnored(T element)
element
- T, the element to test.Copyright © SAS Institute. All Rights Reserved.