Package psidev.psi.mi.jami.model
Interface VariableParameterValue
-
- All Known Implementing Classes:
AbstractXmlVariableParameterValue
,DefaultVariableParameterValue
,XmlVariableParameterValue
,XmlVariableParameterValue
,XmlVariableParameterValue
public interface VariableParameterValue
A value for a specific variableParameter in a specific experiment - eg - the concentration of a specific drug.- 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 Integer
getOrder()
The decimal order for this variableParameterValue.String
getValue()
The value for the variableParameterValue (drug concentration, etc.) It cannot be null.VariableParameter
getVariableParameter()
The variableParameter reporting this VariableParameterValueComparator.
-
-
-
Method Detail
-
getValue
String getValue()
The value for the variableParameterValue (drug concentration, etc.) It cannot be null.- Returns:
- the value of the variableParameterValue
-
getOrder
Integer getOrder()
The decimal order for this variableParameterValue. It can be null if the VariableParameterValueComparator does not have any order.- Returns:
- the decimal order
-
getVariableParameter
VariableParameter getVariableParameter()
The variableParameter reporting this VariableParameterValueComparator. It can be null if the variableParameterValue is not attached to any variableParameter- Returns:
- the variableParameter reporting the variableParameterValue
-
-