Uses of Class
com.tangosol.util.filter.ExtractorFilter

Packages that use ExtractorFilter
Package
Description
Contains concrete Filter implementations and related interfaces.
  • Uses of ExtractorFilter in com.tangosol.util.filter

    Modifier and Type
    Class
    Description
    class 
    Filter which compares the result of a method invocation with a value.
    class 
    Filter which tests a Collection or Object array value returned from a method invocation for containment of all values in a Set.
    class 
    Filter which tests a Collection or Object array value returned from a method invocation for containment of any value in a Set.
    class 
    Filter which tests a Collection or Object array value returned from a method invocation for containment of a given value.
    class 
    Filter which compares the result of a method invocation with a value for equality.
    class 
    GreaterEqualsFilter<T,E extends Comparable<? super E>>
    Filter which compares the result of a method invocation with a value for "Greater or Equal" condition.
    class 
    GreaterFilter<T,E extends Comparable<? super E>>
    Filter which compares the result of a method invocation with a value for "Greater" condition.
    class 
    Filter which checks whether the result of a method invocation belongs to a predefined set of values.
    class 
    Filter which tests the result of a method invocation for inequality to null.
    class 
    Filter which compares the result of a method invocation with null.
    class 
    LessEqualsFilter<T,E extends Comparable<? super E>>
    Filter which compares the result of a method invocation with a value for "Less or Equals" condition.
    class 
    LessFilter<T,E extends Comparable<? super E>>
    Filter which compares the result of a method invocation with a value for "Less" condition.
    class 
    Filter which compares the result of a method invocation with a value for pattern match.
    class 
    Filter which compares the result of a method invocation with a value for inequality.
    class 
    A java.util.function.Predicate based ExtractorFilter.
    class 
    Filter which uses the regular expression pattern match defined by the String.matches(String) contract.