Uses of Interface
org.biojava.bio.seq.FilterUtils.FilterTransformer

Packages that use FilterUtils.FilterTransformer
org.biojava.bio.seq Classes and interfaces for defining biological sequences and informatics objects. 
 

Uses of FilterUtils.FilterTransformer in org.biojava.bio.seq
 

Classes in org.biojava.bio.seq that implement FilterUtils.FilterTransformer
 class FilterUtils.DelegatingTransformer
          An implementation of FilterTransformer that attempts to transform by one transformer, and if that fails, by another.
 

Methods in org.biojava.bio.seq with parameters of type FilterUtils.FilterTransformer
static FeatureFilter FilterUtils.transformFilter(FeatureFilter ff, FilterUtils.FilterTransformer trans)
          This is a general framework method for transforming one filter into another.
 

Constructors in org.biojava.bio.seq with parameters of type FilterUtils.FilterTransformer
FilterUtils.DelegatingTransformer(FilterUtils.FilterTransformer t1, FilterUtils.FilterTransformer t2)
          Create a new DelegatingTransformer that will apply t1 and then t2 if t1 fails.