Interface OrthologueSet
- All Known Implementing Classes:
AbstractOrthologueSet
,SimpleOrthologueSet
public interface OrthologueSet
Interface for classes that store and manipulate
orthologues.
You cannot create Orthologues here, just work with them.
- Author:
- David Huen * @author Matthew Pocock
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic interface
An iterator for the contents of an OrthologueSet. -
Field Summary
Fields -
Method Summary
Modifier and TypeMethodDescriptionvoid
addOrthologue
(Orthologue ortho) Add an orthologue to the set.filter
(OrthologueFilter filter) Filter the contents of a set.getOrthologue
(String homologeneID) iterator()
Return an iterator to the contents of the set.void
removeOrthologue
(Orthologue ortho) Remove an orthologue from the set.
-
Field Details
-
MODIFY
-
-
Method Details
-
getOrthologue
-
addOrthologue
Add an orthologue to the set.- Throws:
ChangeVetoException
-
removeOrthologue
Remove an orthologue from the set.- Throws:
ChangeVetoException
-
iterator
Return an iterator to the contents of the set. -
filter
Filter the contents of a set.
-