public final class ParcelUuid
extends Object
implements Parcelable
java.lang.Object | |
↳ | android.os.ParcelUuid |
这个类是一个围绕 UUID
包装器,它是一个128位通用唯一标识符的不可变表示。
Inherited constants |
---|
From interface android.os.Parcelable
|
Fields |
|
---|---|
public static final Creator<ParcelUuid> |
CREATOR |
Public constructors |
|
---|---|
ParcelUuid(UUID uuid) 构造函数从给定的 |
Public methods |
|
---|---|
int |
describeContents() 描述此Parcelable实例的封送表示中包含的特殊对象的种类。 |
boolean |
equals(Object object) 将此ParcelUuid与另一个对象进行比较以求相等。 |
static ParcelUuid |
fromString(String uuid) |
UUID |
getUuid() |
int |
hashCode() 返回对象的哈希码值。 |
String |
toString() 返回ParcelUuid的字符串表示例如:0000110B-0000-1000-8000-00805F9B34FB将作为返回值。 |
void |
writeToParcel(Parcel dest, int flags) 将此对象平铺到一个包裹中。 |
Inherited methods |
|
---|---|
From class java.lang.Object
|
|
From interface android.os.Parcelable
|
ParcelUuid (UUID uuid)
构造函数从给定的 UUID
创建一个ParcelUuid实例。
Parameters | |
---|---|
uuid |
UUID : UUID |
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. |
boolean equals (Object object)
将此ParcelUuid与另一个对象进行比较以求相等。 如果object
不是null
,是ParcelUuid实例,并且所有位均相等,则返回true
。
Parameters | |
---|---|
object |
Object : the Object to compare to. |
Returns | |
---|---|
boolean |
true if this ParcelUuid is equal to object or false if not. |
ParcelUuid fromString (String uuid)
Parameters | |
---|---|
uuid |
String : the UUID string to parse. |
Returns | |
---|---|
ParcelUuid |
a ParcelUuid instance. |
Throws | |
---|---|
NullPointerException |
if uuid is null . |
IllegalArgumentException |
if uuid is not formatted correctly. |
int hashCode ()
返回对象的哈希码值。 为了散列表的好处而支持此方法,例如由HashMap
提供的HashMap
。
hashCode
的总合同是:
hashCode
method must consistently return the same integer, provided no information used in equals
comparisons on the object is modified. This integer need not remain consistent from one execution of an application to another execution of the same application. equals(Object)
method, then calling the hashCode
method on each of the two objects must produce the same integer result. equals(java.lang.Object)
method, then calling the hashCode
method on each of the two objects must produce distinct integer results. However, the programmer should be aware that producing distinct integer results for unequal objects may improve the performance of hash tables. 尽可能合理实用,类Object
定义的hashCode方法确实为不同的对象返回不同的整数。 (这通常通过将对象的内部地址转换为整数来实现,但Java TM编程语言不需要此实现技术。)
Returns | |
---|---|
int |
a hash code value for this object. |
String toString ()
返回ParcelUuid的字符串表示例如:0000110B-0000-1000-8000-00805F9B34FB将作为返回值。
Returns | |
---|---|
String |
a String instance. |
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 . |