UUID version() Method in Java with Examples
Every UUID has a version number describing the generation of this UUID. The version() method of UUID class in Java is generally used to get version number associated with this UUID.
Syntax:
public int version()
Parameters: This method does not take any parameter.
Return Value: This method returns a int value which is the version number associated with this UUID.
Below programs illustrate the working of version() method:
Program 1:
// Java code to illustrate version() method import java.util.*; public class UUID_Demo { public static void main(String[] args) { // Creating two UUIDs UUID UUID_1 = UUID .fromString( "58e0a7d7-eebc-11d8-9669-0800200c9a66" ); // Displaying the UUID System.out.println( "UUID: " + UUID_1); // Displaying the version number System.out.println( "The version number is: " + UUID_1.version()); } } |
UUID: 58e0a7d7-eebc-11d8-9669-0800200c9a66 The version number is: 1
Program 2:
// Java code to illustrate version() method import java.util.*; public class UUID_Demo { public static void main(String[] args) { // Creating two UUIDs UUID UUID_1 = UUID .fromString( "5fc03087-d265-11e7-b8c6-83e29cd24f4c" ); // Displaying the UUID System.out.println( "UUID: " + UUID_1); // Displaying the version Value System.out.println( "The version number is: " + UUID_1.version()); } } |
UUID: 5fc03087-d265-11e7-b8c6-83e29cd24f4c The version number is: 1
Recommended Posts:
- UUID nameUUIDFromBytes() Method in Java with Examples
- UUID fromString() Method in Java with Examples
- UUID hashCode() Method in Java with Examples
- UUID compareTo() Method in Java with Examples
- UUID toString() Method in Java with Examples
- UUID getLeastSignificantBits() Method in Java with Examples
- UUID equals() Method in Java with Examples
- UUID getMostSignificantBits() Method in Java with Examples
- UUID timestamp() Method in Java with Examples
- UUID variant() Method in Java with Examples
- UUID clockSequence() Method in Java with Examples
- UUID node() Method in Java with Examples
- Java.util.UUID class in Java
- Java lang.Long.byteValue() method in Java with Examples
- Java lang.Long.reverse() method in Java with Examples
If you like GeeksforGeeks and would like to contribute, you can also write an article using contribute.geeksforgeeks.org or mail your article to contribute@geeksforgeeks.org. See your article appearing on the GeeksforGeeks main page and help other Geeks.
Please Improve this article if you find anything incorrect by clicking on the "Improve Article" button below.