UUID(Int64, Int64) Constructor

Definition

Constructs a new UUID using the specified data.

[Android.Runtime.Register(".ctor", "(JJ)V", "")]
public UUID (long mostSigBits, long leastSigBits);
[<Android.Runtime.Register(".ctor", "(JJ)V", "")>]
new Java.Util.UUID : int64 * int64 -> Java.Util.UUID

Parameters

mostSigBits
Int64

The most significant bits of the UUID

leastSigBits
Int64

The least significant bits of the UUID

Attributes

Remarks

Constructs a new UUID using the specified data. mostSigBits is used for the most significant 64 bits of the UUID and leastSigBits becomes the least significant 64 bits of the UUID.

Java documentation for java.util.UUID.UUID(long, long).

Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.

Applies to