Package psidev.psi.mi.jami.enricher
Interface InteractorPoolEnricher
-
- All Superinterfaces:
InteractorEnricher<InteractorPool>,MIEnricher<InteractorPool>
- All Known Implementing Classes:
FullInteractorPoolEnricher
public interface InteractorPoolEnricher extends InteractorEnricher<InteractorPool>
The Interactor pool enricher is an enricher which can enrich either single interactor pool or a collection. Sub enrichers: CvTerm, Organism, interactor- Since:
- 16/05/13
- Author:
- Gabriel Aldam (galdam@ebi.ac.uk)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Comparator<Interactor>getInteractorComparator()getInteractorComparator.CompositeInteractorEnrichergetInteractorEnricher()getInteractorEnricher.voidsetInteractorComparator(Comparator<Interactor> comparator)setInteractorComparator.voidsetInteractorEnricher(CompositeInteractorEnricher enricher)setInteractorEnricher.-
Methods inherited from interface psidev.psi.mi.jami.enricher.InteractorEnricher
getCvTermEnricher, getInteractorFetcher, getListener, getOrganismEnricher, setCvTermEnricher, setListener, setOrganismEnricher
-
Methods inherited from interface psidev.psi.mi.jami.enricher.MIEnricher
enrich, enrich, enrich
-
-
-
-
Method Detail
-
getInteractorEnricher
CompositeInteractorEnricher getInteractorEnricher()
getInteractorEnricher.
- Returns:
- a
CompositeInteractorEnricherobject.
-
getInteractorComparator
Comparator<Interactor> getInteractorComparator()
getInteractorComparator.
- Returns:
- a
Comparatorobject.
-
setInteractorEnricher
void setInteractorEnricher(CompositeInteractorEnricher enricher)
setInteractorEnricher.
- Parameters:
enricher- aCompositeInteractorEnricherobject.
-
setInteractorComparator
void setInteractorComparator(Comparator<Interactor> comparator)
setInteractorComparator.
- Parameters:
comparator- aComparatorobject.
-
-