Uses of Class
de.isas.mztab2.model.Uri
-
Packages that use Uri 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. -
-
Uses of Uri in de.isas.mztab2.io.serialization
Methods in de.isas.mztab2.io.serialization with parameters of type Uri Modifier and Type Method Description String
UriConverter. convert(Uri uri)
void
UriSerializer. serialize(Uri uri, com.fasterxml.jackson.core.JsonGenerator jg, com.fasterxml.jackson.databind.SerializerProvider sp)
void
UriSerializer. serializeWithType(Uri 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 Uri Constructor Description UriSerializer(Class<Uri> t)
Constructor for UriSerializer. -
Uses of Uri in de.isas.mztab2.model
Methods in de.isas.mztab2.model that return Uri Modifier and Type Method Description Uri
Uri. id(Integer id)
Builder method for id.Uri
Uri. value(String value)
Builder method for value.Methods in de.isas.mztab2.model that return types with arguments of type Uri Modifier and Type Method Description @Valid List<Uri>
Metadata. getExternalStudyUri()
A URI pointing to an external file with more details about the study design (e.g., an ISA-TAB file).@Valid List<Uri>
Metadata. getUri()
A URI pointing to the file’s source data (e.g., a MetaboLights records).Methods in de.isas.mztab2.model with parameters of type Uri Modifier and Type Method Description Metadata
Metadata. addExternalStudyUriItem(Uri externalStudyUriItem)
Add a single externalStudyUriItem to the externalStudyUri collection.Metadata
Metadata. addUriItem(Uri uriItem)
Add a single uriItem to the uri collection.Method parameters in de.isas.mztab2.model with type arguments of type Uri Modifier and Type Method Description Metadata
Metadata. externalStudyUri(List<Uri> externalStudyUri)
Builder method for externalStudyUri.void
Metadata. setExternalStudyUri(List<Uri> externalStudyUri)
Set externalStudyUri.void
Metadata. setUri(List<Uri> uri)
Set uri.Metadata
Metadata. uri(List<Uri> uri)
Builder method for uri.
-