Package iofXml.v3
Class OverallResult
- java.lang.Object
-
- iofXml.v3.OverallResult
-
public class OverallResult extends java.lang.Object
Java class for OverallResult complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="OverallResult"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="Time" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/> <element name="TimeBehind" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/> <element name="Position" type="{http://www.w3.org/2001/XMLSchema}integer" minOccurs="0"/> <element name="Status" type="{http://www.orienteering.org/datastandard/3.0}ResultStatus"/> <element name="Score" type="{http://www.orienteering.org/datastandard/3.0}Score" maxOccurs="unbounded" minOccurs="0"/> <element name="Extensions" type="{http://www.orienteering.org/datastandard/3.0}Extensions" minOccurs="0"/> </sequence> </restriction> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected Extensions
extensions
protected java.math.BigInteger
position
protected java.util.List<Score>
score
protected ResultStatus
status
protected java.lang.Double
time
protected java.lang.Double
timeBehind
-
Constructor Summary
Constructors Constructor Description OverallResult()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Extensions
getExtensions()
Gets the value of the extensions property.java.math.BigInteger
getPosition()
Gets the value of the position property.java.util.List<Score>
getScore()
Gets the value of the score property.ResultStatus
getStatus()
Gets the value of the status property.java.lang.Double
getTime()
Gets the value of the time property.java.lang.Double
getTimeBehind()
Gets the value of the timeBehind property.void
setExtensions(Extensions value)
Sets the value of the extensions property.void
setPosition(java.math.BigInteger value)
Sets the value of the position property.void
setStatus(ResultStatus value)
Sets the value of the status property.void
setTime(java.lang.Double value)
Sets the value of the time property.void
setTimeBehind(java.lang.Double value)
Sets the value of the timeBehind property.
-
-
-
Field Detail
-
time
protected java.lang.Double time
-
timeBehind
protected java.lang.Double timeBehind
-
position
protected java.math.BigInteger position
-
status
protected ResultStatus status
-
score
protected java.util.List<Score> score
-
extensions
protected Extensions extensions
-
-
Method Detail
-
getTime
public java.lang.Double getTime()
Gets the value of the time property.- Returns:
- possible object is
Double
-
setTime
public void setTime(java.lang.Double value)
Sets the value of the time property.- Parameters:
value
- allowed object isDouble
-
getTimeBehind
public java.lang.Double getTimeBehind()
Gets the value of the timeBehind property.- Returns:
- possible object is
Double
-
setTimeBehind
public void setTimeBehind(java.lang.Double value)
Sets the value of the timeBehind property.- Parameters:
value
- allowed object isDouble
-
getPosition
public java.math.BigInteger getPosition()
Gets the value of the position property.- Returns:
- possible object is
BigInteger
-
setPosition
public void setPosition(java.math.BigInteger value)
Sets the value of the position property.- Parameters:
value
- allowed object isBigInteger
-
getStatus
public ResultStatus getStatus()
Gets the value of the status property.- Returns:
- possible object is
ResultStatus
-
setStatus
public void setStatus(ResultStatus value)
Sets the value of the status property.- Parameters:
value
- allowed object isResultStatus
-
getScore
public java.util.List<Score> getScore()
Gets the value of the score 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 Jakarta XML Binding object. This is why there is not a
set
method for the score property.For example, to add a new item, do as follows:
getScore().add(newItem);
Objects of the following type(s) are allowed in the list
Score
- Returns:
- The value of the score property.
-
getExtensions
public Extensions getExtensions()
Gets the value of the extensions property.- Returns:
- possible object is
Extensions
-
setExtensions
public void setExtensions(Extensions value)
Sets the value of the extensions property.- Parameters:
value
- allowed object isExtensions
-
-