- java.lang.Object
-
- java.rmi.server.UID
-
- All Implemented Interfaces:
- Serializable
public final class UID extends Object implements Serializable
AUID
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. TheUID(short)
constructor can be used to create one of 216 well-known identifiers.A
UID
instance contains three primitive values:unique
, anint
that uniquely identifies the VM that thisUID
was generated in, with respect to its host and at the time represented by thetime
value (an example implementation of theunique
value would be a process identifier), or zero for a well-knownUID
time
, along
equal to a time (as returned bySystem.currentTimeMillis()
) at which the VM that thisUID
was generated in was alive, or zero for a well-knownUID
count
, ashort
to distinguishUID
s generated in the same VM with the sametime
value
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 aUID
instance with a unique host identifier, such as an IP address.- Since:
- JDK1.1
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor and Description UID()
Generates aUID
that is unique over time with respect to the host that it was generated on.UID(short num)
Creates a "well-known"UID
.
-
Method Summary
Methods Modifier and Type Method and Description boolean
equals(Object obj)
Compares the specified object with thisUID
for equality.int
hashCode()
Returns the hash code value for thisUID
.static UID
read(DataInput in)
Constructs and returns a newUID
instance by unmarshalling a binary representation from anDataInput
instance.String
toString()
Returns a string representation of thisUID
.void
write(DataOutput out)
Marshals a binary representation of thisUID
to aDataOutput
instance.
-
-
-
Constructor Detail
-
UID
public UID()
Generates aUID
that is unique over time with respect to the host that it was generated on.
-
UID
public UID(short num)
Creates a "well-known"UID
. There are 216 possible such well-known ids.A
UID
created via this constructor will not clash with anyUID
s generated via the no-arg constructor.- Parameters:
num
- number for well-knownUID
-
-
Method Detail
-
hashCode
public int hashCode()
Returns the hash code value for thisUID
.- Overrides:
hashCode
in classObject
- Returns:
- the hash code value for this
UID
- See Also:
Object.equals(java.lang.Object)
,System.identityHashCode(java.lang.Object)
-
equals
public boolean equals(Object obj)
Compares the specified object with thisUID
for equality. This method returnstrue
if and only if the specified object is aUID
instance with the sameunique
,time
, andcount
values as this one.- Overrides:
equals
in classObject
- Parameters:
obj
- the object to compare thisUID
to- Returns:
true
if the given object is equivalent to this one, andfalse
otherwise- See Also:
Object.hashCode()
,HashMap
-
toString
public String toString()
Returns a string representation of thisUID
.
-
write
public void write(DataOutput out) throws IOException
Marshals a binary representation of thisUID
to aDataOutput
instance.Specifically, this method first invokes the given stream's
DataOutput.writeInt(int)
method with thisUID
'sunique
value, then it invokes the stream'sDataOutput.writeLong(long)
method with thisUID
'stime
value, and then it invokes the stream'sDataOutput.writeShort(int)
method with thisUID
'scount
value.- Parameters:
out
- theDataOutput
instance to write thisUID
to- Throws:
IOException
- if an I/O error occurs while performing this operation
-
read
public static UID read(DataInput in) throws IOException
Constructs and returns a newUID
instance by unmarshalling a binary representation from anDataInput
instance.Specifically, this method first invokes the given stream's
DataInput.readInt()
method to read aunique
value, then it invoke's the stream'sDataInput.readLong()
method to read atime
value, then it invoke's the stream'sDataInput.readShort()
method to read acount
value, and then it creates and returns a newUID
instance that contains theunique
,time
, andcount
values that were read from the stream.- Parameters:
in
- theDataInput
instance to readUID
from- Returns:
- unmarshalled
UID
instance - Throws:
IOException
- if an I/O error occurs while performing this operation
-
-
Nederlandse vertaling
U hebt gevraagd om deze site in het Nederlands te bezoeken. Voor nu wordt alleen de interface vertaald, maar nog niet alle inhoud.Als je me wilt helpen met vertalingen, is je bijdrage welkom. Het enige dat u hoeft te doen, is u op de site registreren en mij een bericht sturen waarin u wordt gevraagd om u toe te voegen aan de groep vertalers, zodat u de gewenste pagina's kunt vertalen. Een link onderaan elke vertaalde pagina geeft aan dat u de vertaler bent en heeft een link naar uw profiel.
Bij voorbaat dank.
Document heeft de 11/06/2005 gemaakt, de laatste keer de 04/03/2020 gewijzigd
Bron van het afgedrukte document:https://www.gaudry.be/nl/java-api-rf-java/rmi/server/UID.html
De infobrol is een persoonlijke site waarvan de inhoud uitsluitend mijn verantwoordelijkheid is. De tekst is beschikbaar onder CreativeCommons-licentie (BY-NC-SA). Meer info op de gebruiksvoorwaarden en de auteur.
Referenties
Deze verwijzingen en links verwijzen naar documenten die geraadpleegd zijn tijdens het schrijven van deze pagina, of die aanvullende informatie kunnen geven, maar de auteurs van deze bronnen kunnen niet verantwoordelijk worden gehouden voor de inhoud van deze pagina.
De auteur Deze site is als enige verantwoordelijk voor de manier waarop de verschillende concepten, en de vrijheden die met de referentiewerken worden genomen, hier worden gepresenteerd. Vergeet niet dat u meerdere broninformatie moet doorgeven om het risico op fouten te verkleinen.