ContactsContract.ProviderStatus
public
static
final
class
ContactsContract.ProviderStatus
extends Object
java.lang.Object | |
↳ | android.provider.ContactsContract.ProviderStatus |
API for inquiring about the general status of the provider.
Summary
Constants | |
---|---|
String |
CONTENT_TYPE
The MIME-type of |
String |
DATABASE_CREATION_TIMESTAMP
Timestamp (milliseconds since epoch) of when the provider's database was created. |
String |
STATUS
An integer representing the current status of the provider. |
int |
STATUS_BUSY
The provider won't respond to queries. |
int |
STATUS_EMPTY
The status that indicates that there are no accounts and no contacts on the device. |
int |
STATUS_NORMAL
Default status of the provider. |
Fields | |
---|---|
public
static
final
Uri |
CONTENT_URI
The content:// style URI for this table. |
Inherited methods | |
---|---|
Constants
CONTENT_TYPE
public static final String CONTENT_TYPE
The MIME-type of CONTENT_URI
providing a directory of
settings.
Constant Value: "vnd.android.cursor.dir/provider_status"
DATABASE_CREATION_TIMESTAMP
public static final String DATABASE_CREATION_TIMESTAMP
Timestamp (milliseconds since epoch) of when the provider's database was created.
Type: long
Constant Value: "database_creation_timestamp"
STATUS
public static final String STATUS
An integer representing the current status of the provider.
Constant Value: "status"
STATUS_BUSY
public static final int STATUS_BUSY
The provider won't respond to queries. It is in the middle of a long running task, such as a database upgrade or locale change.
Constant Value: 1 (0x00000001)
STATUS_EMPTY
public static final int STATUS_EMPTY
The status that indicates that there are no accounts and no contacts on the device.
Constant Value: 2 (0x00000002)
STATUS_NORMAL
public static final int STATUS_NORMAL
Default status of the provider.
Constant Value: 0 (0x00000000)
Fields
CONTENT_URI
public static final Uri CONTENT_URI
The content:// style URI for this table. Requests to this URI can be performed on the UI thread because they are always unblocking.