/**@class android.os.ParcelUuid
 implements android.os.Parcelable

@extends java.lang.Object

 This class is a Parcelable wrapper around {@link UUID} which is an
 immutable representation of a 128-bit universally unique
 identifier.
*/
var ParcelUuid = {

/***/
CREATOR : "null",
/**Creates a new ParcelUuid from a string representation of {@link UUID}.
@param {String} uuid
            the UUID string to parse.
@return {Object {android.os.ParcelUuid}} a ParcelUuid instance.
@throws NullPointerException
             if {@code uuid} is {@code null}.
@throws IllegalArgumentException
             if {@code uuid} is not formatted correctly.
*/
fromString : function(  ) {},

/**Get the {@link UUID} represented by the ParcelUuid.
@return {Object {java.util.UUID}} UUID contained in the ParcelUuid.
*/
getUuid : function(  ) {},

/**Returns a string representation of the ParcelUuid
 For example: 0000110B-0000-1000-8000-00805F9B34FB will be the return value.
@return {String} a String instance.
*/
toString : function(  ) {},

/**
*/
hashCode : function(  ) {},

/**Compares this ParcelUuid to another object for equality. If {@code object}
 is not {@code null}, is a ParcelUuid instance, and all bits are equal, then
 {@code true} is returned.
@param {Object {Object}} object
            the {@code Object} to compare to.
@return {Boolean} {@code true} if this ParcelUuid is equal to {@code object}
         or {@code false} if not.
*/
equals : function(  ) {},

/**
*/
describeContents : function(  ) {},

/**
*/
writeToParcel : function(  ) {},


};