Uses of Interface
com.invirgance.convirgance.transform.filter.Filter
Packages that use Filter
Package
Description
Provides transformers to filter data from streams based upon common
logic like equals, great than, less than, etc.
-
Uses of Filter in com.invirgance.convirgance.transform.filter
Classes in com.invirgance.convirgance.transform.filter that implement FilterModifier and TypeClassDescriptionclassFilters JSONObjects based on multiple criteria, requiring all conditions to be met.classFilters data by comparing a specified key-value pair using a flexible coercive comparator.classFilters out JSONObjects based on string containment comparison.classUsed when filtering data that should be equal to some criteria.classUsed to check if a JSONObjects key has a value greater than the provided minimum value.classFilters JSONObjects where the value of a specified key is greater than or equal to a comparison value.classFilters JSONObjects where the value of the specified key is less than the provided comparison value.classFilters JSONObjects where the value of the specified key is less than or equal to the provided comparison value.classFilter out JSONObjects by using a SQL-esque Like operator.classFilters JSONObjects that do not meet the condition of an existing filter.classUsed to filter JSONObjects that meet any of a given criteria.Methods in com.invirgance.convirgance.transform.filter that return FilterModifier and TypeMethodDescriptionNotFilter.getFilter()Gets the current filter that will be inverted during evaluation.Methods in com.invirgance.convirgance.transform.filter that return types with arguments of type FilterModifier and TypeMethodDescriptionAndFilter.getFilters()Returns the current filters that form the criteria.OrFilter.getFilters()Returns the current filters used for evaluation.Methods in com.invirgance.convirgance.transform.filter with parameters of type FilterModifier and TypeMethodDescriptionvoidSet the filter to invert during comparison.Method parameters in com.invirgance.convirgance.transform.filter with type arguments of type FilterModifier and TypeMethodDescriptionvoidAndFilter.setFilters(List<Filter> filters) Sets the filters used to form the criteria.voidOrFilter.setFilters(List<Filter> filters) Sets the filters to use for evaluation.Constructors in com.invirgance.convirgance.transform.filter with parameters of type FilterModifierConstructorDescriptionCreates a AndFilter with the list of filters that need to pass during evaluation.Creates a new NotFilter with the provided filter to invert.Creates a new OrFilter with the provided filters to evaluate with.Constructor parameters in com.invirgance.convirgance.transform.filter with type arguments of type Filter