Class IsoformType
Java class for isoformType complex type
.The following schema fragment specifies the expected content contained within this class.
<complexType name="isoformType">
<complexContent>
<restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
<sequence>
<element name="id" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded"/>
<element name="name" maxOccurs="unbounded">
<complexType>
<simpleContent>
<extension base="<http://www.w3.org/2001/XMLSchema>string">
<attribute name="evidence" type="{https://uniprot.org/uniprot}intListType" />
</extension>
</simpleContent>
</complexType>
</element>
<element name="sequence">
<complexType>
<complexContent>
<restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
<attribute name="type" use="required">
<simpleType>
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="not described"/>
<enumeration value="described"/>
<enumeration value="displayed"/>
<enumeration value="external"/>
</restriction>
</simpleType>
</attribute>
<attribute name="ref" type="{http://www.w3.org/2001/XMLSchema}string" />
</restriction>
</complexContent>
</complexType>
</element>
<element name="text" type="{https://uniprot.org/uniprot}evidencedStringType" maxOccurs="unbounded" minOccurs="0"/>
</sequence>
</restriction>
</complexContent>
</complexType>
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic classJava class for anonymous complex typestatic classJava class for anonymous complex type -
Field Summary
FieldsModifier and TypeFieldDescriptionprotected List<IsoformType.Name>protected IsoformType.Sequenceprotected List<EvidencedStringType> -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptiongetId()Gets the value of the id property.getName()Gets the value of the name property.Gets the value of the sequence property.getText()Gets the value of the text property.voidsetSequence(IsoformType.Sequence value) Sets the value of the sequence property.
-
Field Details
-
id
-
name
-
sequence
-
text
-
-
Constructor Details
-
IsoformType
public IsoformType()
-
-
Method Details
-
getId
Gets the value of the id 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 id property.For example, to add a new item, do as follows:
getId().add(newItem);
Objects of the following type(s) are allowed in the list
String- Returns:
- The value of the id property.
-
getName
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
IsoformType.Name- Returns:
- The value of the name property.
-
getSequence
Gets the value of the sequence property.- Returns:
- possible object is
IsoformType.Sequence
-
setSequence
Sets the value of the sequence property.- Parameters:
value- allowed object isIsoformType.Sequence
-
getText
Gets the value of the text 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 text property.For example, to add a new item, do as follows:
getText().add(newItem);
Objects of the following type(s) are allowed in the list
EvidencedStringType- Returns:
- The value of the text property.
-