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 CONTENT_URI providing a directory of settings.

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

Object clone()

Creates and returns a copy of this object.

boolean equals(Object obj)

Indicates whether some other object is "equal to" this one.

void finalize()

Called by the garbage collector on an object when garbage collection determines that there are no more references to the object.

final Class<?> getClass()

Returns the runtime class of this Object.

int hashCode()

Returns a hash code value for the object.

final void notify()

Wakes up a single thread that is waiting on this object's monitor.

final void notifyAll()

Wakes up all threads that are waiting on this object's monitor.

String toString()

Returns a string representation of the object.

final void wait(long timeoutMillis, int nanos)

Causes the current thread to wait until it is awakened, typically by being notified or interrupted, or until a certain amount of real time has elapsed.

final void wait(long timeoutMillis)

Causes the current thread to wait until it is awakened, typically by being notified or interrupted, or until a certain amount of real time has elapsed.

final void wait()

Causes the current thread to wait until it is awakened, typically by being notified or interrupted.

Constants

CONTENT_TYPE

Added in API level 23
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

Added in API level 26
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

Added in API level 23
public static final String STATUS

An integer representing the current status of the provider.

Constant Value: "status"

STATUS_BUSY

Added in API level 23
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

Added in API level 23
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

Added in API level 23
public static final int STATUS_NORMAL

Default status of the provider.

Constant Value: 0 (0x00000000)

Fields

CONTENT_URI

Added in API level 23
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.