java.lang.Object |
↳ |
com.google.android.gms.games.snapshot.SnapshotEntity |
Class Overview
Data object representing the data for a saved game. This is immutable, and therefore safe to
cache or store. Note, however, that the data it represents may grow stale.
This class exists solely to support parceling these objects and should not be used directly.
Summary
[Expand]
Inherited Constants |
From interface
android.os.Parcelable
int |
CONTENTS_FILE_DESCRIPTOR |
|
int |
PARCELABLE_WRITE_RETURN_VALUE |
|
|
[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()
|
|
From interface
android.os.Parcelable
abstract
int
|
describeContents()
|
abstract
void
|
writeToParcel(Parcel arg0, int arg1)
|
|
From interface
com.google.android.gms.games.snapshot.Snapshot
|
From interface
com.google.android.gms.common.data.Freezable
abstract
Snapshot
|
freeze()
Freeze a volatile representation into an immutable representation.
|
abstract
boolean
|
isDataValid()
Check to see if this object is valid for use.
|
|
Fields
Public Methods
public
boolean
equals
(Object obj)
public
Snapshot
freeze
()
Freeze a volatile representation into an immutable representation. Objects returned from this
call are safe to cache.
Note that the output of freeze
may not be identical to the parent object, but should
be equal. In other words:
Freezable f1 = new Freezable();
Freezable f2 = f1.freeze();
f1 == f2 may not be true.
f1.equals(f2) will be true.
Returns |
Snapshot |
A concrete implementation of the data object.
|
Retrieves the metadata for this snapshot.
public
boolean
isDataValid
()
Check to see if this object is valid for use. If the object is still volatile, this method
will indicate whether or not the object can be safely used. The output of a call to
freeze()
will always be valid.
Returns |
boolean |
whether or not the object is valid for use.
|
public
String
toString
()
public
void
writeToParcel
(Parcel out, int flags)
Parameters |
out |
Parcel
|
flags |
int
|