Package org.snpeff.filter
Interface Filter<T>
-
- Type Parameters:
T-
- All Known Implementing Classes:
VariantEffectFilter
public interface Filter<T>A Generic filter interface- Author:
- pcingola
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleananythingSet()Has any of the paremeters been set?booleanfilter(T objectToTest)Does 'objectToTest' satisfy the filter?
-
-
-
Method Detail
-
anythingSet
boolean anythingSet()
Has any of the paremeters been set?- Returns:
-
filter
boolean filter(T objectToTest)
Does 'objectToTest' satisfy the filter?- Parameters:
objectToTest-- Returns:
- true if 'objectToTest' satisfies the filter
-
-