Class CompoundFilter
java.lang.Object
- All Implemented Interfaces:
VariantContextFilter, Serializable, Cloneable, Iterable<VariantContextFilter>, Collection<VariantContextFilter>, Predicate<VariantContext>, List<VariantContextFilter>, RandomAccess, SequencedCollection<VariantContextFilter>
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 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 ArrayList
add, add, addAll, addAll, addFirst, addLast, clear, clone, contains, ensureCapacity, equals, forEach, get, getFirst, getLast, hashCode, indexOf, isEmpty, iterator, lastIndexOf, listIterator, listIterator, remove, remove, removeAll, removeFirst, removeIf, removeLast, removeRange, replaceAll, retainAll, set, size, sort, spliterator, subList, toArray, toArray, trimToSizeMethods inherited from class AbstractCollection
containsAll, toStringMethods inherited from interface Collection
parallelStream, stream, toArrayMethods inherited from interface List
containsAll, reversed
-
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)
-