Uses of Interface
org.ckkloverdos.filter.IFilter

Packages that use IFilter
org.ckkloverdos.collection   
org.ckkloverdos.filter   
org.ckkloverdos.function   
 

Uses of IFilter in org.ckkloverdos.collection
 

Methods in org.ckkloverdos.collection with parameters of type IFilter
 boolean L.all(IFilter filter)
          Returns true iff all the elements can be accepted by the filter.
 boolean IL.all(IFilter filter)
          Returns true iff all the elements can be accepted by the filter.
 boolean L.all(IFilter filter, java.lang.Object hints)
          Returns true iff all the elements can be accepted by the filter.
 boolean IL.all(IFilter filter, java.lang.Object hints)
          Returns true iff all the elements can be accepted by the filter.
 boolean L.any(IFilter filter)
          Returns true iff all the elements can be accepted by the filter.
 boolean IL.any(IFilter filter)
          Returns true iff all the elements can be accepted by the filter.
 boolean L.any(IFilter filter, java.lang.Object hints)
          Returns true iff all the elements can be accepted by the filter.
 boolean IL.any(IFilter filter, java.lang.Object hints)
          Returns true iff all the elements can be accepted by the filter.
 IL L.filter(IFilter filter)
          Returns a new list with all the elements that are accepted by filter.
 IL IL.filter(IFilter filter)
          Returns a new list with all the elements that are accepted by filter.
 IL L.filter(IFilter filter, java.lang.Object hints)
          Returns a new list with all the elements that are accepted by filter.
 IL IL.filter(IFilter filter, java.lang.Object hints)
          Returns a new list with all the elements that are accepted by filter.
static IL CollectionUtil.filterKeys(java.util.Map map, IFilter filter, java.lang.Object hints)
           
static java.util.Map CollectionUtil.filterMap(java.util.Map map, IFilter filter, java.lang.Object hints)
          Contructs a new map with keys those accepted by filter.
 java.lang.Object L.head(IFilter filter)
          Returns the first element of this list that is accepted by filter.
 java.lang.Object IL.head(IFilter filter)
          Returns the first element of this list that is accepted by filter.
 java.lang.Object L.head(IFilter filter, java.lang.Object hints)
          Returns the first element of this list that is accepted by filter.
 java.lang.Object IL.head(IFilter filter, java.lang.Object hints)
          Returns the first element of this list that is accepted by filter.
 java.util.Iterator L.iterator(IFilter filter)
          Returns an iterator over the elements in this list that are accepted by the given filter.
 java.util.Iterator IL.iterator(IFilter filter)
          Returns an iterator over the elements in this list that are accepted by the given filter.
 java.util.Iterator L.iterator(IFilter filter, java.lang.Object hints)
          Returns an iterator over the elements in this list that are accepted by the given filter.
 java.util.Iterator IL.iterator(IFilter filter, java.lang.Object hints)
          Returns an iterator over the elements in this list that are accepted by the given filter.
 

Uses of IFilter in org.ckkloverdos.filter
 

Classes in org.ckkloverdos.filter that implement IFilter
 class AndFilter
          An implementation of IFilter providing boolean AND semantics between two other filters.
 class IsNull
          A filter that tests for null equality.
 class NotFilter
          An implementation of IFilter providing boolean NOT semantics for another filters.
 class NotNull
          A filter that tests whether an object is not null.
 class OrFilter
          An implementation of IFilter providing boolean OR semantics between two other filters.
 class REFilter
          An implementation of IFilter for which the filtering is based on a regular expression.
 

Constructors in org.ckkloverdos.filter with parameters of type IFilter
AndFilter(IFilter a, IFilter b)
          Constructs an AndFilter that will combine filters a and b with boolean AND.
NotFilter(IFilter f)
          Contructs a new filter that negates the results of the provided filter f.
OrFilter(IFilter a, IFilter b)
          Constructs an AndFilter that will combine filters a and b with boolean OR.
 

Uses of IFilter in org.ckkloverdos.function
 

Subinterfaces of IFilter in org.ckkloverdos.function
 interface IFilterFunction
          A combination of IFilter and IFunction.
 interface IFilterProcedure
          A combination of IFilter and IProcedure.
 



Copyright © 1999-2007 Christos KK Loverdos. All Rights Reserved.