Class StaticFilter.AllFilter
- java.lang.Object
-
- com.tonic.analysis.query.planner.filter.StaticFilter.AllFilter
-
- All Implemented Interfaces:
StaticFilter
- Enclosing interface:
- StaticFilter
public static class StaticFilter.AllFilter extends Object implements StaticFilter
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface com.tonic.analysis.query.planner.filter.StaticFilter
StaticFilter.AllFilter, StaticFilter.CompositeFilter
-
-
Constructor Summary
Constructors Constructor Description AllFilter()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Set<ClassFile>filterClasses(Stream<ClassFile> classes)Selects the classes that pass this filter.Set<MethodEntry>filterMethods(Stream<MethodEntry> methods)Selects the methods that pass this filter.-
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface com.tonic.analysis.query.planner.filter.StaticFilter
and, or
-
-
-
-
Method Detail
-
filterMethods
public Set<MethodEntry> filterMethods(Stream<MethodEntry> methods)
Description copied from interface:StaticFilterSelects the methods that pass this filter.- Specified by:
filterMethodsin interfaceStaticFilter- Parameters:
methods- the candidate methods- Returns:
- every candidate
-
filterClasses
public Set<ClassFile> filterClasses(Stream<ClassFile> classes)
Description copied from interface:StaticFilterSelects the classes that pass this filter.- Specified by:
filterClassesin interfaceStaticFilter- Parameters:
classes- the candidate classes- Returns:
- every candidate
-
-