Most visited

Recently visited

Added in API level 5

ContentProviderResult

public class ContentProviderResult
extends Object implements Parcelable

java.lang.Object
   ↳ android.content.ContentProviderResult


包含应用程序的结果ContentProviderOperation 它保证具有uricount一个。

Summary

Inherited constants

From interface android.os.Parcelable

Fields

public static final Creator<ContentProviderResult> CREATOR

public final Integer count

public final Uri uri

Public constructors

ContentProviderResult(Uri uri)
ContentProviderResult(int count)
ContentProviderResult(Parcel source)

Public methods

int describeContents()

描述此Parcelable实例的封送表示中包含的特殊对象的种类。

String toString()

返回对象的字符串表示形式。

void writeToParcel(Parcel dest, int flags)

将此对象平铺到一个包裹中。

Inherited methods

From class java.lang.Object
From interface android.os.Parcelable

Fields

CREATOR

Added in API level 5
Creator<ContentProviderResult> CREATOR

count

Added in API level 5
Integer count

uri

Added in API level 5
Uri uri

Public constructors

ContentProviderResult

Added in API level 5
ContentProviderResult (Uri uri)

Parameters
uri Uri

ContentProviderResult

Added in API level 5
ContentProviderResult (int count)

Parameters
count int

ContentProviderResult

Added in API level 5
ContentProviderResult (Parcel source)

Parameters
source Parcel

Public methods

describeContents

Added in API level 5
int describeContents ()

描述此Parcelable实例的封送表示中包含的特殊对象的种类。 例如,如果对象将在writeToParcel(Parcel, int)的输出中包含writeToParcel(Parcel, int) ,则此方法的返回值必须包含CONTENTS_FILE_DESCRIPTOR位。

Returns
int a bitmask indicating the set of special object types marshaled by this Parcelable object instance.

toString

Added in API level 5
String toString ()

返回对象的字符串表示形式。 通常, toString方法会返回一个“文本表示”此对象的字符串。 结果应该是一个简洁但内容丰富的表述,对于一个人来说很容易阅读。 建议所有子类重写此方法。

ObjecttoString方法返回一个字符串,其中包含对象为实例的类的名称,符号字符“ @ ”以及对象的哈希代码的无符号十六进制表示形式。 换句话说,这个方法返回一个字符串,其值等于:

 getClass().getName() + '@' + Integer.toHexString(hashCode())
 

Returns
String a string representation of the object.

writeToParcel

Added in API level 5
void writeToParcel (Parcel dest, 
                int flags)

将此对象平铺到一个包裹中。

Parameters
dest Parcel: The Parcel in which the object should be written.
flags int: Additional flags about how the object should be written. May be 0 or PARCELABLE_WRITE_RETURN_VALUE.

Hooray!