T - the type of object on which the filter workspublic interface Filter<T>
| Modifier and Type | Method and Description |
|---|---|
default List<T> |
filter(List<T> list)
Deprecated.
not part of filter anymore use ListFilter instead
|
boolean |
filter(T type)
Verifies an object of type t.
|
default boolean |
verify(T type)
Deprecated.
refactored to filter so use this instead
|
boolean filter(T type) throws CouldNotPerformException
type - the object which is verifiedCouldNotPerformException - if the verification fails@Deprecated default boolean verify(T type) throws CouldNotPerformException
type - the object which is verifiedCouldNotPerformException - if the verification fails@Deprecated default List<T> filter(List<T> list) throws CouldNotPerformException
list - the list which is filteredCouldNotPerformException - if an error occurs while filteringCopyright © 2015–2018 openbase.org. All rights reserved.