UUID.variant() has the following syntax.
public int variant()
In the following code shows how to use UUID.variant() method.
// w w w . j av a 2 s.c o m import java.util.UUID; public class Main { public static void main(String[] args) { // creating UUID UUID uid = UUID.randomUUID(); // checking variant value System.out.println("Variant value: "+uid.variant()); } }
The code above generates the following result.