Page Summary
-
The ScoreSubmissionData.Result class is a simple data class containing result data for a specific time span.
-
It includes fields for the raw score, formatted score, a boolean indicating if it's a new best, and an optional score tag.
-
It has a constructor to create a Result object with the score details and a public
toString()method.
Simple data class containing the result data for a particular time span.
Field Summary
| public final String | formattedScore | String containing the score data in a display-appropriate format. |
| public final boolean | newBest | Boolean indicating whether or not this score was the player's new best score for this time span. |
| public final long | rawScore | The raw score value of this score result. |
| public final String | scoreTag | The score tag associated with this result, if any. |
Public Constructor Summary
Public Method Summary
| String |
toString()
|
Inherited Method Summary
Fields
public final String formattedScore
String containing the score data in a display-appropriate format.
public final boolean newBest
Boolean indicating whether or not this score was the player's new best score for this time span.
public final long rawScore
The raw score value of this score result.
public final String scoreTag
The score tag associated with this result, if any.