Package psidev.psi.mi.jami.model
Interface Confidence
-
- All Known Subinterfaces:
ModelledConfidence
- All Known Implementing Classes:
AbstractXmlConfidence
,AbstractXmlConfidence
,AbstractXmlConfidence
,DefaultConfidence
,DefaultModelledConfidence
,MitabConfidence
,XmlConfidence
,XmlConfidence
,XmlConfidence
,XmlConfidenceWrapper
,XmlConfidenceWrapper
,XmlConfidenceWrapper
,XmlModelledConfidence
,XmlModelledConfidence
,XmlModelledConfidence
public interface Confidence
A Confidence gives information about how reliable an object is.- Since:
22/11/12
- Version:
- $Id$
- Author:
- Marine Dumousseau (marine@ebi.ac.uk)
-
-
Field Summary
Fields Modifier and Type Field Description static String
AUTHOR_BASED_CONFIDENCE
ConstantAUTHOR_BASED_CONFIDENCE="author-based confidence"
static String
AUTHOR_BASED_CONFIDENCE_MI
ConstantAUTHOR_BASED_CONFIDENCE_MI="MI:1221"
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description CvTerm
getType()
Method used to compute the confidence value.String
getValue()
The confidence value cannot be null.
-
-
-
Field Detail
-
AUTHOR_BASED_CONFIDENCE
static final String AUTHOR_BASED_CONFIDENCE
ConstantAUTHOR_BASED_CONFIDENCE="author-based confidence"
- See Also:
- Constant Field Values
-
AUTHOR_BASED_CONFIDENCE_MI
static final String AUTHOR_BASED_CONFIDENCE_MI
ConstantAUTHOR_BASED_CONFIDENCE_MI="MI:1221"
- See Also:
- Constant Field Values
-
-
Method Detail
-
getType
CvTerm getType()
Method used to compute the confidence value. The confidence type is a controlled vocabulary term and it cannot be null. Ex: author-based confidence, statistical-based confidence, ...- Returns:
- the confidence type
-
getValue
String getValue()
The confidence value cannot be null. It can be a numerical or literal value Ex: 'high', 'low', 0.4, ...- Returns:
- the confidence value
-
-