Java BitSet.valueOf(LongBuffer lb)

Syntax

BitSet.valueOf(LongBuffer lb) has the following syntax.

public static BitSet valueOf(LongBuffer lb)

Example

In the following code shows how to use BitSet.valueOf(LongBuffer lb) method.


import java.nio.LongBuffer;
import java.util.BitSet;
//from www.ja  v a2s.co  m
public class Main {

   public static void main(String[] args) {

      LongBuffer byteBuffer = LongBuffer.wrap(new long[]{1L,2L,3L});
      BitSet bitset1 = BitSet.valueOf(byteBuffer);

      // print the sets
      System.out.println("Bitset1:" + bitset1);

   }
}

The code above generates the following result.