Uses of Class
de.isas.mztab2.model.CV
-
Packages that use CV Package Description de.isas.mztab2.io.serialization This package contains classes that implement custom Jackson serializers for the mzTab-M model objects.de.isas.mztab2.model Base package for the jmztab-m data model, generated from the mzTab_m_swagger.yml specification.uk.ac.ebi.pride.jmztab2.utils.parser This package contains text file line parser implementations for the mzTab-M document sections. -
-
Uses of CV in de.isas.mztab2.io.serialization
Methods in de.isas.mztab2.io.serialization with parameters of type CV Modifier and Type Method Description void
CvSerializer. serialize(CV cv, com.fasterxml.jackson.core.JsonGenerator jg, com.fasterxml.jackson.databind.SerializerProvider sp)
void
CvSerializer. serializeWithType(CV value, com.fasterxml.jackson.core.JsonGenerator gen, com.fasterxml.jackson.databind.SerializerProvider serializers, com.fasterxml.jackson.databind.jsontype.TypeSerializer typeSer)
Constructor parameters in de.isas.mztab2.io.serialization with type arguments of type CV Constructor Description CvSerializer(Class<CV> t)
Constructor for CvSerializer. -
Uses of CV in de.isas.mztab2.model
Methods in de.isas.mztab2.model that return CV Modifier and Type Method Description CV
CV. fullName(String fullName)
Builder method for fullName.CV
CV. id(Integer id)
Builder method for id.CV
CV. label(String label)
Builder method for label.CV
CV. uri(String uri)
Builder method for uri.CV
CV. version(String version)
Builder method for version.Methods in de.isas.mztab2.model that return types with arguments of type CV Modifier and Type Method Description @NotNull @Valid List<CV>
Metadata. getCv()
Specification of controlled vocabularies. label: A string describing the labels of the controlled vocabularies/ontologies used in the mzTab file as a short-hand e.g.Methods in de.isas.mztab2.model with parameters of type CV Modifier and Type Method Description Metadata
Metadata. addCvItem(CV cvItem)
Add a single cvItem to the cv collection.Method parameters in de.isas.mztab2.model with type arguments of type CV Modifier and Type Method Description Metadata
Metadata. cv(List<CV> cv)
Builder method for cv.void
Metadata. setCv(List<CV> cv)
Set cv. -
Uses of CV in uk.ac.ebi.pride.jmztab2.utils.parser
Methods in uk.ac.ebi.pride.jmztab2.utils.parser that return CV Modifier and Type Method Description CV
MZTabParserContext. addCV(Metadata metadata, CV cv)
Add a controlled vocabularies/ontologies into metadata.CV
MZTabParserContext. addCVFullName(Metadata metadata, Integer id, String fullName)
Add a cv[id]-full_name.CV
MZTabParserContext. addCVLabel(Metadata metadata, Integer id, String label)
Add a cv[id]-label.CV
MZTabParserContext. addCVURI(Metadata metadata, Integer id, String uri)
Add a cv[id]-uri.CV
MZTabParserContext. addCVVersion(Metadata metadata, Integer id, String version)
Add a cv[id]-version.Methods in uk.ac.ebi.pride.jmztab2.utils.parser with parameters of type CV Modifier and Type Method Description CV
MZTabParserContext. addCV(Metadata metadata, CV cv)
Add a controlled vocabularies/ontologies into metadata.
-