Class UID
- All Implemented Interfaces:
Serializable
public final class UID extends Object implements Serializable
UID represents an identifier that is unique over time with respect to the host it is generated on, or one of 216 "well-known" identifiers. The UID() constructor can be used to generate an identifier that is unique over time with respect to the host it is generated on. The UID(short) constructor can be used to create one of 216 well-known identifiers.
A UID instance contains three primitive values:
-
unique, anintthat uniquely identifies the VM that thisUIDwas generated in, with respect to its host and at the time represented by thetimevalue (an example implementation of theuniquevalue would be a process identifier), or zero for a well-knownUID -
time, alongequal to a time (as returned bySystem.currentTimeMillis()) at which the VM that thisUIDwas generated in was alive, or zero for a well-knownUID -
count, ashortto distinguishUIDs generated in the same VM with the sametimevalue
An independently generated UID instance is unique over time with respect to the host it is generated on as long as the host requires more than one millisecond to reboot and its system clock is never set backward. A globally unique identifier can be constructed by pairing a UID instance with a unique host identifier, such as an IP address.
- Since:
- 1.1
- See Also:
Constructor Summary
| Constructor | Description |
|---|---|
UID() |
Generates a UID that is unique over time with respect to the host that it was generated on. |
UID |
Creates a "well-known" UID. |
Method Summary
| Modifier and Type | Method | Description |
|---|---|---|
boolean |
equals |
Compares the specified object with this UID for equality. |
int |
hashCode() |
Returns the hash code value for this UID. |
static UID |
read |
Constructs and returns a new UID instance by unmarshalling a binary representation from an DataInput instance. |
String |
toString() |
Returns a string representation of this UID. |
void |
write |
Marshals a binary representation of this UID to a DataOutput instance. |
Constructor Details
UID
public UID()
UID that is unique over time with respect to the host that it was generated on.UID
public UID(short num)
UID. There are 216 possible such well-known ids. A UID created via this constructor will not clash with any UIDs generated via the no-arg constructor.
- Parameters:
-
num- number for well-knownUID
Method Details
hashCode
public int hashCode()
UID.equals
public boolean equals(Object obj)
UID for equality. This method returns true if and only if the specified object is a UID instance with the same unique, time, and count values as this one.toString
public String toString()
UID.write
public void write(DataOutput out) throws IOException
UID to a DataOutput instance. Specifically, this method first invokes the given stream's DataOutput.writeInt(int) method with this UID's unique value, then it invokes the stream's DataOutput.writeLong(long) method with this UID's time value, and then it invokes the stream's DataOutput.writeShort(int) method with this UID's count value.
- Parameters:
-
out- theDataOutputinstance to write thisUIDto - Throws:
-
IOException- if an I/O error occurs while performing this operation
read
public static UID read(DataInput in) throws IOException
UID instance by unmarshalling a binary representation from an DataInput instance. Specifically, this method first invokes the given stream's DataInput.readInt() method to read a unique value, then it invoke's the stream's DataInput.readLong() method to read a time value, then it invoke's the stream's DataInput.readShort() method to read a count value, and then it creates and returns a new UID instance that contains the unique, time, and count values that were read from the stream.
- Parameters:
-
in- theDataInputinstance to readUIDfrom - Returns:
- unmarshalled
UIDinstance - Throws:
-
IOException- if an I/O error occurs while performing this operation
© 1993, 2021, Oracle and/or its affiliates. All rights reserved.
Documentation extracted from Debian's OpenJDK Development Kit package.
Licensed under the GNU General Public License, version 2, with the Classpath Exception.
Various third party code in OpenJDK is licensed under different licenses (see Debian package).
Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.
https://docs.oracle.com/en/java/javase/17/docs/api/java.rmi/java/rmi/server/UID.html