Class OrganismType
Java class for organismType complex type
.The following schema fragment specifies the expected content contained within this class.
<complexType name="organismType">
<complexContent>
<restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
<sequence>
<element name="name" type="{https://uniprot.org/uniprot}organismNameType" maxOccurs="unbounded"/>
<element name="dbReference" type="{https://uniprot.org/uniprot}dbReferenceType" maxOccurs="unbounded"/>
<element name="lineage" minOccurs="0">
<complexType>
<complexContent>
<restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
<sequence>
<element name="taxon" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded"/>
</sequence>
</restriction>
</complexContent>
</complexType>
</element>
</sequence>
<attribute name="evidence" type="{https://uniprot.org/uniprot}intListType" />
</restriction>
</complexContent>
</complexType>
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic classJava class for anonymous complex type -
Field Summary
FieldsModifier and TypeFieldDescriptionprotected List<DbReferenceType>Describes a cross-reference to the NCBI taxonomy database.protected OrganismType.LineageDescribes the lineage of the source organism.protected List<OrganismNameType>Describes the names of the source organism. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionDescribes a cross-reference to the NCBI taxonomy database.Gets the value of the evidence property.Describes the lineage of the source organism.getName()Describes the names of the source organism.voidsetLineage(OrganismType.Lineage value) Sets the value of the lineage property.
-
Field Details
-
name
Describes the names of the source organism. Equivalent to the flat file OS-line. -
dbReference
Describes a cross-reference to the NCBI taxonomy database. Equivalent to the flat file OX-line. -
lineage
Describes the lineage of the source organism. Equivalent to the flat file OC-line. -
evidence
-
-
Constructor Details
-
OrganismType
public OrganismType()
-
-
Method Details
-
getName
Describes the names of the source organism. Equivalent to the flat file OS-line. Gets the value of the name property.This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. This is why there is not a
setmethod for the name property.For example, to add a new item, do as follows:
getName().add(newItem);
Objects of the following type(s) are allowed in the list
OrganismNameType- Returns:
- The value of the name property.
-
getDbReference
Describes a cross-reference to the NCBI taxonomy database. Equivalent to the flat file OX-line. Gets the value of the dbReference property.This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. This is why there is not a
setmethod for the dbReference property.For example, to add a new item, do as follows:
getDbReference().add(newItem);
Objects of the following type(s) are allowed in the list
DbReferenceType- Returns:
- The value of the dbReference property.
-
getLineage
Describes the lineage of the source organism. Equivalent to the flat file OC-line.- Returns:
- possible object is
OrganismType.Lineage
-
setLineage
Sets the value of the lineage property.- Parameters:
value- allowed object isOrganismType.Lineage- See Also:
-
getEvidence
Gets the value of the evidence property.This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. This is why there is not a
setmethod for the evidence property.For example, to add a new item, do as follows:
getEvidence().add(newItem);
Objects of the following type(s) are allowed in the list
Integer- Returns:
- The value of the evidence property.
-