Determine the port portion of the UUID. Note that the port is a 28-bit value; the first nibble is always 0x0. @return the port portion of the UID
()
| 372 | * @return the port portion of the UID |
| 373 | */ |
| 374 | public int getPort() |
| 375 | { |
| 376 | ensureConstructed(); |
| 377 | return m_nPort & ~MASK_ALLFLAGS; |
| 378 | } |
| 379 | |
| 380 | /** |
| 381 | * Determine the "counter" portion of the UUID that ensures that two UUIDs |