java.lang.Object |
↳ |
com.google.android.gms.games.leaderboard.ScoreSubmissionData.Result |
Class Overview
Simple data class containing the result data for a particular time span.
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. |
[Expand]
Inherited Methods |
From class
java.lang.Object
Object
|
clone()
|
boolean
|
equals(Object arg0)
|
void
|
finalize()
|
final
Class<?>
|
getClass()
|
int
|
hashCode()
|
final
void
|
notify()
|
final
void
|
notifyAll()
|
String
|
toString()
|
final
void
|
wait(long arg0, int arg1)
|
final
void
|
wait(long arg0)
|
final
void
|
wait()
|
|
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.
Public Constructors
public
ScoreSubmissionData.Result
(long rawScore, String formattedScore, String scoreTag, boolean newBest)
Parameters |
rawScore |
long
|
formattedScore |
String
|
scoreTag |
String
|
newBest |
boolean
|
Public Methods
public
String
toString
()