Interface EventResult
- All Known Implementing Classes:
EventResultImpl
public interface EventResult
Defines methods used by classes that provide event result information
-
Method Summary
Modifier and TypeMethodDescriptionReturns the away scoreReturns the climberReturns the climber value in a decimal formatReturns the climber rankingdefault List<CompetitorResult>Returns the competitor resultsdefault DoubleReturns the distancedefault IntegergetGrid()Returns the grid valueReturns the home scoregetId()Returns the id of the event resultReturns the match statusReturns the points of the resultReturns the points in a decimal formatReturns the position of the resultReturns the sprint of the resultReturns the sprint value in a decimal formatReturns the sprint rankingReturns the state of the resultReturns the status commentgetTime()Returns the time of the resultReturns the time rankingReturns the wc points
-
Method Details
-
getId
String getId()Returns the id of the event result- Returns:
- the id of the event result
-
getPosition
BigInteger getPosition()Returns the position of the result- Returns:
- the position of the result
-
getPoints
BigInteger getPoints()Returns the points of the result- Returns:
- the points of the result
-
getTime
String getTime()Returns the time of the result- Returns:
- the time of the result
-
getTimeRanking
BigInteger getTimeRanking()Returns the time ranking- Returns:
- thr time ranking
-
getStatus
String getStatus()Returns the state of the result- Returns:
- the state of the result
-
getStatusComment
String getStatusComment()Returns the status comment- Returns:
- the status comment
-
getSprint
BigInteger getSprint()Returns the sprint of the result- Returns:
- the sprint of the result
-
getSprintRanking
BigInteger getSprintRanking()Returns the sprint ranking- Returns:
- the sprint ranking
-
getClimber
BigInteger getClimber()Returns the climber- Returns:
- the climber
-
getClimberRanking
BigInteger getClimberRanking()Returns the climber ranking- Returns:
- the climber ranking
-
getMatchStatus
Integer getMatchStatus()Returns the match status- Returns:
- the match status
-
getHomeScore
BigDecimal getHomeScore()Returns the home score- Returns:
- the home score
-
getAwayScore
BigDecimal getAwayScore()Returns the away score- Returns:
- the away score
-
getPointsDecimal
Double getPointsDecimal()Returns the points in a decimal format- Returns:
- the points in a decimal format
-
getSprintDecimal
Double getSprintDecimal()Returns the sprint value in a decimal format- Returns:
- the sprint value in a decimal format
-
getClimberDecimal
Double getClimberDecimal()Returns the climber value in a decimal format- Returns:
- the climber value in a decimal format
-
getWcPoints
Double getWcPoints()Returns the wc points- Returns:
- the wc points
-
getGrid
Returns the grid value- Returns:
- the grid value
-
getDistance
Returns the distance- Returns:
- the distance
-
getCompetitorResults
Returns the competitor results- Returns:
- the competitor results
-