java.util.UUID.getLeastSignificantBits() Method



Description

The getLeastSignificantBits() method is used to return the least significant 64 bits of this UUID's 128 bit value.

Declaration

Following is the declaration for java.util.UUID.getLeastSignificantBits() method.

public long getLeastSignificantBits()

Parameters

NA

Return Value

The method call returns the least significant 64 bits of this UUID's 128 bit value.

Exception

NA

Example

The following example shows the usage of java.util.UUID.getLeastSignificantBits()

package com.tutorialspoint;

import java.util.*;

public class UUIDDemo {
   public static void main(String[] args) {

      // creating UUID      
      UUID uid = UUID.fromString("38400000-8cf0-11bd-b23e-10b96e4ef00d");     

      // checking least significant bits
      System.out.println("Least significant bits: "+uid.getLeastSignificantBits());    
   }    
}

Let us compile and run the above program, this will produce the following result.

Least significant bits: -5603022497796657139
java_util_uuid.htm
Advertisements