java.lang.Object |
↳ |
com.google.android.gms.auth.AccountChangeEvent |
Class Overview
AccountChangeEvent instances are Parcelables that contain data about an event for an account
(e.g., the account was added, modified, etc.).
Summary
[Expand]
Inherited Constants |
From interface
android.os.Parcelable
int |
CONTENTS_FILE_DESCRIPTOR |
|
int |
PARCELABLE_WRITE_RETURN_VALUE |
|
|
Public Constructors |
|
AccountChangeEvent(long id, String accountName, int changeType, int eventIndex, String changeData)
|
[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)
|
|
Fields
Public Constructors
public
AccountChangeEvent
(long id, String accountName, int changeType, int eventIndex, String changeData)
Parameters |
id |
long
|
accountName |
String
|
changeType |
int
|
eventIndex |
int
|
changeData |
String
|
Public Methods
public
boolean
equals
(Object that)
public
String
getAccountName
()
public
String
getChangeData
()
Extra data about the change, if any. For example, in the case of a rename, this will contain
the new account name. May be null
if no extra data is available.
public
int
getChangeType
()
The change type of this event. Maps to constants in GoogleAuthUtil
.
public
int
getEventIndex
()
The index of the event. Can be used to determine if the event has been seen or not.
public
String
toString
()
public
void
writeToParcel
(Parcel dest, int flags)
Parameters |
dest |
Parcel
|
flags |
int
|