Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

Uses of Interface
org.jdaemon.era.Filter

Uses of Filter in org.jdaemon.era
 

Classes in org.jdaemon.era that implement Filter
private  class AbstractCube.Equal
          Default implementation for StandardFilter with type EQUAL
private  class AbstractCube.Greater
          Default implementation for StandardFilter with type GREATER
private  class AbstractCube.GreaterOrEqual
          Default implementation for StandardFilter with type GREATER_OR_EQUAL
private  class AbstractCube.Less
          Default implementation for StandardFilter with type LESS
private  class AbstractCube.LessOrEqual
          Default implementation for StandardFilter with type LESS_OR_EQUAL
private  class AbstractCube.StandardFilter
          Base class for standard Filter implementations
 class AndFilter
           
 class ComplexFilter
          Filter for combining several other filters with AND or OR.
 

Fields in org.jdaemon.era declared as Filter
private  Filter FilteredIterator.filter
           
private  Filter FilteredCube.filter
           
private  Filter[] ComplexFilter.filterList
           
(package private)  Filter AndFilter.a
           
(package private)  Filter AndFilter.b
           
 

Methods in org.jdaemon.era with parameters of type Filter
 Cube FilteredCube.constrain(Filter filter)
           
 Cube Cube.constrain(Filter filter)
          Creates a new cube containing some subset of the contents of this cube.
 Cube AbstractCube.constrain(Filter filter)
          Create a new cube containing some subset of the contents of this cube The constrain(filter) method provides a way to generate subsets of the data contained in the cube.
 

Constructors in org.jdaemon.era with parameters of type Filter
FilteredIterator(java.util.Iterator parent, Filter filter)
          Creates a new instance of FilteredIterator
FilteredCube(Cube parent, Filter filter)
          Creates a new instance of FilteredSimpleCube
ComplexFilter(Filter a, Filter b, int relationship)
          Creates a new instance of ComplexFilter using two instances of Filter
ComplexFilter(Filter[] filterList, int relationship)
          Creates a new instance of ComplexFilter using a list of Filter objects
AndFilter(Filter a, Filter b)
          Creates a new instance of BinaryFilter