public static class SyncStorageEngine.AuthorityInfo extends Object
Modifier and Type | Field and Description |
---|---|
static int |
NOT_INITIALIZED
Default state for a newly installed adapter.
|
static int |
NOT_SYNCABLE
The adapter will not receive any syncs.
|
static int |
SYNCABLE
The adapter is initialized and functioning.
|
static int |
SYNCABLE_NO_ACCOUNT_ACCESS
The adapter is syncable but does not have access to the synced account and needs a
user access approval.
|
static int |
SYNCABLE_NOT_INITIALIZED
The adapter is syncable but still requires an initialization sync.
|
static int |
UNDEFINED
The syncable state is undefined.
|
public static final int UNDEFINED
public static final int NOT_INITIALIZED
public static final int NOT_SYNCABLE
public static final int SYNCABLE
public static final int SYNCABLE_NOT_INITIALIZED
public static final int SYNCABLE_NO_ACCOUNT_ACCESS
public String toString()
Object
toString
method returns a string that
"textually represents" this object. The result should
be a concise but informative representation that is easy for a
person to read.
It is recommended that all subclasses override this method.
The toString
method for class Object
returns a string consisting of the name of the class of which the
object is an instance, the at-sign character `@
', and
the unsigned hexadecimal representation of the hash code of the
object. In other words, this method returns a string equal to the
value of:
getClass().getName() + '@' + Integer.toHexString(hashCode())