Class GeneLocationType

java.lang.Object
org.uniprot.uniprot.GeneLocationType

public class GeneLocationType extends Object
Describes non-nuclear gene locations (organelles and plasmids). Equivalent to the flat file OG-line.

Java class for geneLocationType complex type

.

The following schema fragment specifies the expected content contained within this class.


 <complexType name="geneLocationType">
   <complexContent>
     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
       <sequence>
         <element name="name" type="{https://uniprot.org/uniprot}statusType" maxOccurs="unbounded" minOccurs="0"/>
       </sequence>
       <attribute name="type" use="required">
         <simpleType>
           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
             <enumeration value="apicoplast"/>
             <enumeration value="chloroplast"/>
             <enumeration value="organellar chromatophore"/>
             <enumeration value="cyanelle"/>
             <enumeration value="hydrogenosome"/>
             <enumeration value="mitochondrion"/>
             <enumeration value="non-photosynthetic plastid"/>
             <enumeration value="nucleomorph"/>
             <enumeration value="plasmid"/>
             <enumeration value="plastid"/>
           </restriction>
         </simpleType>
       </attribute>
       <attribute name="evidence" type="{https://uniprot.org/uniprot}intListType" />
     </restriction>
   </complexContent>
 </complexType>
 
  • Field Details

  • Constructor Details

    • GeneLocationType

      public GeneLocationType()
  • Method Details

    • getName

      public List<StatusType> 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 StatusType

      Returns:
      The value of the name property.
    • getType

      public String getType()
      Gets the value of the type property.
      Returns:
      possible object is String
    • setType

      public void setType(String value)
      Sets the value of the type property.
      Parameters:
      value - allowed object is String
    • getEvidence

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