Class IsoformType

java.lang.Object
org.uniprot.uniprot.IsoformType

public class IsoformType extends Object
Describes isoforms in 'alternative products' annotations.

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>
 
  • Field Details

  • Constructor Details

    • IsoformType

      public IsoformType()
  • Method Details

    • getId

      public List<String> 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 set method 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

      public List<IsoformType.Name> 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 set method 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

      public IsoformType.Sequence getSequence()
      Gets the value of the sequence property.
      Returns:
      possible object is IsoformType.Sequence
    • setSequence

      public void setSequence(IsoformType.Sequence value)
      Sets the value of the sequence property.
      Parameters:
      value - allowed object is IsoformType.Sequence
    • getText

      public List<EvidencedStringType> 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 set method 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.