Class AbstractOrthoPairCollection
- java.lang.Object
-
- org.biojava.bio.program.homologene.AbstractOrthoPairCollection
-
- All Implemented Interfaces:
OrthoPairCollection
- Direct Known Subclasses:
SimpleOrthoPairCollection
public abstract class AbstractOrthoPairCollection extends Object implements OrthoPairCollection
An abstract implementation of the OrthoPairCollection interface. Its primary role is to implement the filter() method.i- Author:
- David Huen
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.biojava.bio.program.homologene.OrthoPairCollection
OrthoPairCollection.Iterator
-
-
Constructor Summary
Constructors Constructor Description AbstractOrthoPairCollection()
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description abstract voidadd(OrthoPairSet group)abstract booleancontains(OrthoPairSet group)OrthoPairCollectionfilter(OrthoPairSetFilter filters)abstract booleanisEmpty()abstract OrthoPairCollection.Iteratoriterator()
-
-
-
Constructor Detail
-
AbstractOrthoPairCollection
public AbstractOrthoPairCollection()
-
-
Method Detail
-
add
public abstract void add(OrthoPairSet group)
- Specified by:
addin interfaceOrthoPairCollection
-
contains
public abstract boolean contains(OrthoPairSet group)
- Specified by:
containsin interfaceOrthoPairCollection
-
isEmpty
public abstract boolean isEmpty()
- Specified by:
isEmptyin interfaceOrthoPairCollection
-
iterator
public abstract OrthoPairCollection.Iterator iterator()
- Specified by:
iteratorin interfaceOrthoPairCollection
-
filter
public OrthoPairCollection filter(OrthoPairSetFilter filters)
- Specified by:
filterin interfaceOrthoPairCollection
-
-