Package psidev.psi.mi.jami.model
Interface Stoichiometry
-
- All Known Implementing Classes:
DefaultStoichiometry
,MitabStoichiometry
,XmlStoichiometry
,XmlStoichiometryRange
,XmlStoichiometryRange
,XmlStoichiometryRange
public interface Stoichiometry
The stoichiometry of a participant- Since:
21/05/13
- Version:
- $Id$
- Author:
- Marine Dumousseau (marine@ebi.ac.uk)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description int
getMaxValue()
The maximum value for the stoichiometry.int
getMinValue()
The minimum value for the stoichiometry.
-
-
-
Method Detail
-
getMinValue
int getMinValue()
The minimum value for the stoichiometry. If the stoichiometry does not have a minValue because it is a mean value, getMinValue() and getMaxValue() will return the same mean stoichiometry value.- Returns:
- The minimum value for this stoichiometry if there is one, otherwise the mean stoichiometry value
-
getMaxValue
int getMaxValue()
The maximum value for the stoichiometry. If the stoichiometry does not have a maxValue because it is a mean value, getMinValue() and getMaxValue() will return the same mean stoichiometry value.- Returns:
- The maximum value for this stoichiometry if there is one, otherwise the mean stoichiometry value
-
-