Class CompoundFilter
- All Implemented Interfaces:
VariantContextFilter,Serializable,Cloneable,Iterable<VariantContextFilter>,Collection<VariantContextFilter>,Predicate<VariantContext>,List<VariantContextFilter>,RandomAccess
A Predicate on VariantContexts that returns true when either all its sub-predicates are true, or none are false.
- See Also:
-
Field Summary
Fields inherited from class java.util.AbstractList
modCount -
Constructor Summary
ConstructorsConstructorDescriptionCompoundFilter(boolean requireAll) A constructor that will determine if this compound filter will require that *all* the included filters pass or *some* of them pass (depending on the requireAll parameter in the constructor). -
Method Summary
Methods inherited from class java.util.ArrayList
add, add, addAll, addAll, clear, clone, contains, ensureCapacity, equals, forEach, get, hashCode, indexOf, isEmpty, iterator, lastIndexOf, listIterator, listIterator, remove, remove, removeAll, removeIf, removeRange, replaceAll, retainAll, set, size, sort, spliterator, subList, toArray, toArray, trimToSizeMethods inherited from class java.util.AbstractCollection
containsAll, toStringMethods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, waitMethods inherited from interface java.util.Collection
parallelStream, stream, toArrayMethods inherited from interface java.util.List
containsAll
-
Constructor Details
-
CompoundFilter
public CompoundFilter(boolean requireAll) A constructor that will determine if this compound filter will require that *all* the included filters pass or *some* of them pass (depending on the requireAll parameter in the constructor).- Parameters:
requireAll- a boolean parameter determining whether this filter requires all its elements to pass (true) for it to pass, or only one (false). If there are no variantfilters it will return true.
-
-
Method Details
-
test
- Specified by:
testin interfacePredicate<VariantContext>- Parameters:
variantContext- the record to examine against the sub-filters- Returns:
- true if variantContext either passes all the filters (when requireAll==true) or doesn't fail any of the filters (when requireAll==false)
-