Java BitSet Create Byte2BitSet(byte bytes)

Here you can find the source of Byte2BitSet(byte bytes)

Description

Byte Bit Set

License

Open Source License

Declaration

public static BitSet Byte2BitSet(byte bytes) 

Method Source Code


//package com.java2s;
import java.util.BitSet;

public class Main {
    public static BitSet Byte2BitSet(byte bytes) {
        BitSet bits = new BitSet(8);
        for (int i = 0; i < 8; i++) {
            if ((bytes & (1 << i)) > 0) {
                bits.set(i);//  w  w  w  .  j  a  va  2 s.  c  o m
            }
        }
        return bits;
    }
}

Related

  1. bitsetFromIndices(int size, int... indices)
  2. bitsetFromString(String pixelsString)
  3. bitSetOf(long lowerBits, long upperBits)
  4. bitSetOf(String inString)
  5. bitSetOfIndexes(int... indexes)
  6. byte2BitSet(byte[] b, int offset, boolean bitZeroMeansExtended)
  7. byte2BitSet(byte[] b, int offset, int maxBits)
  8. convert(final long value)
  9. convert(long value, int bitSetOffset, BitSet bits)