This documentation differs from the official API. Jadeite adds extra features to the API including: variable font sizes, constructions examples, placeholders for classes and methods, and auto-generated “See Also” links. Additionally it is missing some items found in standard Javadoc documentation, including: generics type information, “Deprecated” tags and comments, “See Also” links, along with other minor differences. Please send any questions or feedback to bam@cs.cmu.edu.


java.rmi.server
class UID

java.lang.Object extended by java.rmi.server.UID
All Implemented Interfaces:
Serializable

Most common way to construct:

UID uid = new UID();

Based on 25 examples


public final class UID
extends Object
implements Serializable

A 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 {@link #UID()} constructor can be used to generate an identifier that is unique over time with respect to the host it is generated on. The {@link #UID(short)} constructor can be used to create one of 216 well-known identifiers.

A UID instance contains three primitive values:

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.


Constructor Summary
UID()

          Generates a UID 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
 boolean

          Compares the specified object with this UID for equality.
 int

          Returns the hash code value for this UID.
static UID

          Constructs and returns a new UID instance by unmarshalling a binary representation from an DataInput instance.
 String

          Returns a string representation of this UID.
 void

          Marshals a binary representation of this UID to a DataOutput instance.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

UID

public UID()
Generates a UID 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 any UIDs generated via the no-arg constructor.

Parameters:
num - number for well-known UID
Method Detail

equals

public boolean equals(Object obj)
Compares the specified object with this 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.

Overrides:
equals in class Object
Parameters:
obj - the object to compare this UID to
Returns:
true if the given object is equivalent to this one, and false otherwise

hashCode

public int hashCode()
Returns the hash code value for this UID.

Overrides:
hashCode in class Object
Returns:
the hash code value for this UID

read

public static UID read(DataInput in)
                throws IOException
Constructs and returns a new UID instance by unmarshalling a binary representation from an DataInput instance.

Specifically, this method first invokes the given stream's {@link DataInput#readInt()} method to read a unique value, then it invoke's the stream's {@link DataInput#readLong()} method to read a time value, then it invoke's the stream's {@link 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 - the DataInput instance to read UID from
Returns:
unmarshalled UID instance
Throws:
IOException - if an I/O error occurs while performing this operation

toString

public String toString()
Returns a string representation of this UID.

Overrides:
toString in class Object
Returns:
a string representation of this UID

write

public void write(DataOutput out)
           throws IOException
Marshals a binary representation of this UID to a DataOutput instance.

Specifically, this method first invokes the given stream's {@link DataOutput#writeInt(int)} method with this UID's unique value, then it invokes the stream's {@link DataOutput#writeLong(long)} method with this UID's time value, and then it invokes the stream's {@link DataOutput#writeShort(int)} method with this UID's count value.

Parameters:
out - the DataOutput instance to write this UID to
Throws:
IOException - if an I/O error occurs while performing this operation


This documentation differs from the official API. Jadeite adds extra features to the API including: variable font sizes, constructions examples, placeholders for classes and methods, and auto-generated “See Also” links. Additionally it is missing some items found in standard Javadoc documentation, including: generics type information, “Deprecated” tags and comments, “See Also” links, along with other minor differences. Please send any questions or feedback to bam@cs.cmu.edu.
This page displays the Jadeite version of the documention, which is derived from the offical documentation that contains this copyright notice:
Copyright 2008 Sun Microsystems, Inc. All rights reserved. Use is subject to license terms. Also see the documentation redistribution policy.
The official Sun™ documentation can be found here at http://java.sun.com/javase/6/docs/api/.