java.lang.Object | |
↳ | com.google.android.gms.games.multiplayer.InvitationEntity |
Data object representing the data for a multiplayer invitation. 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.
[Expand]
Inherited Constants | |||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
![]()
|
Fields | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
CREATOR |
Public Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Freeze a volatile representation into an immutable representation.
| |||||||||||
Retrieve the server timestamp at which this
Invitation was created. | |||||||||||
Retrieve the
Game object that this Invitation is associated with. | |||||||||||
Retrieve the ID of this
Invitation . | |||||||||||
Retrieve the
Participant who created this Invitation . | |||||||||||
Retrieve the
Participant s for this object. | |||||||||||
[Expand]
Inherited Methods | |||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
![]() | |||||||||||||||||||||||||||||||||
![]() | |||||||||||||||||||||||||||||||||
![]()
| |||||||||||||||||||||||||||||||||
![]()
| |||||||||||||||||||||||||||||||||
![]()
|
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.
Retrieve the server timestamp at which this Invitation
was created.
Invitation
was created.
Retrieve the Game
object that this Invitation
is associated with.
Game
object for this Invitation
.
Retrieve the ID of this Invitation
.
Invitation
.
Retrieve the Participant
who created this Invitation
.
Participant
who created this Invitation
.
Retrieve the Participant
s for this object. This is a list of all Participants
applicable to the given object.
Participant
s for this object.