Example usage for java.util UUID node

List of usage examples for java.util UUID node

Introduction

In this page you can find the example usage for java.util UUID node.

Prototype

public long node() 

Source Link

Document

The node value associated with this UUID.

Usage

From source file:Main.java

public static void main(String[] args) {
    // creating UUID      
    UUID uid = UUID.randomUUID();

    // checking node value
    System.out.println("Node value is: " + uid.node());
}