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.
Constants |
|
---|---|
String |
CONTENT_TYPE The MIME-type of |
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 |
|
---|---|
![]() java.lang.Object
|
String CONTENT_TYPE
The MIME-type of CONTENT_URI
providing a directory of settings.
Constant Value: "vnd.android.cursor.dir/provider_status"
String STATUS
An integer representing the current status of the provider.
Constant Value: "status"
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)
int STATUS_EMPTY
The status that indicates that there are no accounts and no contacts on the device.
Constant Value: 2 (0x00000002)
int STATUS_NORMAL
Default status of the provider.
Constant Value: 0 (0x00000000)
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.