Class PositionType

java.lang.Object
org.uniprot.uniprot.PositionType

public class PositionType extends Object

Java class for positionType complex type

.

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


 <complexType name="positionType">
   <complexContent>
     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
       <attribute name="position" type="{http://www.w3.org/2001/XMLSchema}unsignedLong" />
       <attribute name="status" default="certain">
         <simpleType>
           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
             <enumeration value="certain"/>
             <enumeration value="uncertain"/>
             <enumeration value="less than"/>
             <enumeration value="greater than"/>
             <enumeration value="unknown"/>
           </restriction>
         </simpleType>
       </attribute>
       <attribute name="evidence" type="{https://uniprot.org/uniprot}intListType" />
     </restriction>
   </complexContent>
 </complexType>
 
  • Field Details

  • Constructor Details

    • PositionType

      public PositionType()
  • Method Details

    • getPosition

      public BigInteger getPosition()
      Gets the value of the position property.
      Returns:
      possible object is BigInteger
    • setPosition

      public void setPosition(BigInteger value)
      Sets the value of the position property.
      Parameters:
      value - allowed object is BigInteger
    • getStatus

      public String getStatus()
      Gets the value of the status property.
      Returns:
      possible object is String
    • setStatus

      public void setStatus(String value)
      Sets the value of the status 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.