/**@class android.provider.ContactsContract.ProviderStatus @extends java.lang.Object API for inquiring about the general status of the provider. */ var ProviderStatus = { /** The content:// style URI for this table. Requests to this URI can be performed on the UI thread because they are always unblocking. */ CONTENT_URI : "null", /** The MIME-type of {@link #CONTENT_URI} providing a directory of settings. */ CONTENT_TYPE : "vnd.android.cursor.dir/provider_status", /** An integer representing the current status of the provider. */ STATUS : "status", /** Default status of the provider. */ STATUS_NORMAL : "0", /** 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. */ STATUS_BUSY : "1", /** The status that indicates that there are no accounts and no contacts on the device. */ STATUS_EMPTY : "2", /** Timestamp (milliseconds since epoch) of when the provider's database was created. <P>Type: long */ DATABASE_CREATION_TIMESTAMP : "database_creation_timestamp", };