Package org.uniprot.uniprot
Class PositionType
java.lang.Object
org.uniprot.uniprot.PositionType
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 Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionGets the value of the evidence property.Gets the value of the position property.Gets the value of the status property.voidsetPosition(BigInteger value) Sets the value of the position property.voidSets the value of the status property.
-
Field Details
-
position
-
status
-
evidence
-
-
Constructor Details
-
PositionType
public PositionType()
-
-
Method Details
-
getPosition
Gets the value of the position property.- Returns:
- possible object is
BigInteger
-
setPosition
Sets the value of the position property.- Parameters:
value- allowed object isBigInteger
-
getStatus
Gets the value of the status property.- Returns:
- possible object is
String
-
setStatus
Sets the value of the status property.- Parameters:
value- allowed object isString
-
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.
-