|
Oracle® Fusion Middleware Java API Reference for Oracle Coherence 12c (12.1.3.0.0) E47890-01 |
|||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||
java.lang.Object
com.tangosol.util.Base
com.tangosol.util.UUID
public final class UUID
A UUID is a 256-bit identifier that, if it is generated, is statistically guaranteed to be unique.
| Constructor Summary | |
|---|---|
UUID()Generate a UUID. |
|
UUID(byte[] ab)Construct a UUID from a byte array. |
|
UUID(java.io.DataInput stream)Construct a UUID from a stream. |
|
UUID(long lDatetime, byte[] abIP, int nPort, int nCount)Build a UUID from its constituent members (advanced constructor). |
|
UUID(long lDatetime, java.net.InetAddress addr, int nPort, int nCount)Build a UUID from its constituent members (advanced constructor). |
|
UUID(java.lang.String s)Construct a UUID from a String. |
|
| Method Summary | |
|---|---|
int |
compareTo(java.lang.Object o)Compares this object with the specified object for order. |
boolean |
equals(java.lang.Object o)Determine if two UUIDs are equal. |
byte[] |
getAddress()Determine the internet address of the host that generated the UUID instance. |
int |
getCount()Determine the "counter" portion of the UUID that ensures that two UUIDs generated at the same exact time by the same process are unique. |
int |
getPort()Determine the port portion of the UUID. |
long |
getTimestamp()Determine the date/time value that the UUID instance was generated. |
int |
hashCode()Determine a hash code for the UUID object. |
boolean |
isAddressIncluded()This is true if the IP address is a real IP address. |
boolean |
isGenerated()This is true if the UUID was generated, and false if it was built. |
static void |
main(java.lang.String[] asArgs)Allow UUID identifiers to be generated or parsed at the command line. |
void |
readExternal(java.io.DataInput in)Restore the contents of this object by loading the object's state from the passed DataInput object. |
void |
readExternal(java.io.ObjectInput in)Read this object from an ObjectInputStream. |
void |
readExternal(PofReader in)Restore the contents of a user type instance by reading its state using the specified PofReader object. |
byte[] |
toByteArray()Convert the UUID to a byte array of 32 bytes. |
java.lang.String |
toString()Convert the UUID to a printable String. |
void |
writeExternal(java.io.DataOutput out)Save the contents of this object by storing the object's state into the passed DataOutput object. |
void |
writeExternal(java.io.ObjectOutput out)Write this object to an ObjectOutputStream. |
void |
writeExternal(PofWriter out)Save the contents of a POF user type instance by writing its state using the specified PofWriter object. |
| Constructor Detail |
|---|
public UUID()
public UUID(long lDatetime,
java.net.InetAddress addr,
int nPort,
int nCount)
It is guaranteed that a generated UUID will never equal a built UUID.
lDatetime - the creation date/time millis portion of the UUIDaddr - the InetAddress portion of the UUIDnPort - the port number portion of the UUID; a port number is 16 bits, but up to 28 bits of data from this value will be maintained by the UUIDnCount - the counter portion of the UUID
public UUID(long lDatetime,
byte[] abIP,
int nPort,
int nCount)
It is guaranteed that a generated UUID will never equal a built UUID.
lDatetime - the creation date/time millis portion of the UUIDabIP - the InetAddress portion of the UUIDnPort - the port number portion of the UUID; a port number is 16 bits, but up to 28 bits of data from this value will be maintained by the UUIDnCount - the counter portion of the UUIDpublic UUID(java.lang.String s)
s - a String as would be returned from UUID.toString()public UUID(byte[] ab)
ab - a byte array as would be returned from UUID.toByteArray()
public UUID(java.io.DataInput stream)
throws java.io.IOException
This is a helper constructor that is just a shorthand for a sequence:
UUID uid = new UUID(); uid.readExternal(stream);
stream - an object implementing java.io.DataInput that contains the internal information that a previous UID wrotejava.io.IOException - if an error occurs reading from the stream| Method Detail |
|---|
public static void main(java.lang.String[] asArgs)
public boolean isGenerated()
public long getTimestamp()
public boolean isAddressIncluded()
public byte[] getAddress()
public int getPort()
public int getCount()
public byte[] toByteArray()
public java.lang.String toString()
public boolean equals(java.lang.Object o)
o - the other UUIDpublic int compareTo(java.lang.Object o)
compareTo in interface java.lang.Comparableo - the Object to be compared.java.lang.ClassCastException - if the specified object's type prevents it from being compared to this Objectpublic int hashCode()
public void readExternal(java.io.ObjectInput in)
throws java.io.IOException
readExternal in interface java.io.Externalizablein - the ObjectInputStream to read this object fromjava.io.IOException - if an exception occurs reading this object
public void writeExternal(java.io.ObjectOutput out)
throws java.io.IOException
writeExternal in interface java.io.Externalizableout - the ObjectOutputStream to write this object tojava.io.IOException - thrown if an exception occurs writing this object
public void readExternal(java.io.DataInput in)
throws java.io.IOException
readExternal in interface ExternalizableLitein - the DataInput stream to read data from in order to restore the state of this objectjava.io.IOException - if an I/O exception occursjava.io.NotActiveException - if the object is not in its initial state, and therefore cannot be deserialized into
public void writeExternal(java.io.DataOutput out)
throws java.io.IOException
writeExternal in interface ExternalizableLiteout - the DataOutput stream to write the state of this object tojava.io.IOException - if an I/O exception occurs
public void readExternal(PofReader in)
throws java.io.IOException
readExternal in interface PortableObjectin - the PofReader from which to read the object's statejava.io.IOException - if an I/O error occurs
public void writeExternal(PofWriter out)
throws java.io.IOException
writeExternal in interface PortableObjectout - the PofWriter to which to write the object's statejava.io.IOException - if an I/O error occurs
|
Oracle® Fusion Middleware Java API Reference for Oracle Coherence 12c (12.1.3.0.0) E47890-01 |
|||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||