Lines Matching defs:unique
34 * A <code>UID</code> represents an identifier that is unique over time
39 * identifier that is unique over time with respect to the host it is
45 * <li><code>unique</code>, an <code>int</code> that uniquely identifies
48 * example implementation of the <code>unique</code> value would be a
60 * <p>An independently generated <code>UID</code> instance is unique
63 * clock is never set backward. A globally unique identifier can be
64 * constructed by pairing a <code>UID</code> instance with a unique host
88 private final int unique;
105 * Generates a <code>UID</code> that is unique over time with
115 unique = hostUnique;
157 unique = 0;
165 private UID(int unique, long time, short count) {
166 this.unique = unique;
186 * <code>unique</code>, <code>time</code>, and <code>count</code>
197 return (unique == uid.unique &&
211 return Integer.toString(unique,16) + ":" +
222 * <code>unique</code> value, then it invokes the stream's
235 out.writeInt(unique);
246 * {@link DataInput#readInt()} method to read a <code>unique</code> value,
252 * that contains the <code>unique</code>, <code>time</code>, and
264 int unique = in.readInt();
267 return new UID(unique, time, count);