Java BitSet getBitSetFromBooleanArray(boolean[] buf)

Here you can find the source of getBitSetFromBooleanArray(boolean[] buf)

Description

Convert a boolean[] into an instance of our value class.

License

Open Source License

Parameter

Parameter Description
buf boolean array to be converted

Return

converted boolean array as BitSet

Declaration

public static BitSet getBitSetFromBooleanArray(boolean[] buf) 

Method Source Code

//package com.java2s;
/**********************************************************************
Copyright (c) 2004 Brendan de Beer and others. All rights reserved.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at//from w w  w . j a  v a2s .c o m
    
http://www.apache.org/licenses/LICENSE-2.0
    
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
    
Contributors:
2004 Brendan de Beer - Initial contributor for conversion methods
2005 Erik Bengtson - refactor mapping
2005 Andy Jefferson - added Timestamp/String converters
...
**********************************************************************/

import java.util.BitSet;

public class Main {
    /**
     * Convert a boolean[] into an instance of our value class.
     *
     * @param buf boolean array to be converted
     *
     * @return converted boolean array as BitSet
     */
    public static BitSet getBitSetFromBooleanArray(boolean[] buf) {
        BitSet set = new BitSet();
        for (int i = 0; i < buf.length; i++) {
            if (buf[i]) {
                set.set(i);
            }
        }

        return set;
    }
}

Related

  1. firstInvalidOctet(CharSequence cs, BitSet bits)
  2. formatBitset(BitSet bitset, int width)
  3. generateBitSetBySize(int size, boolean initValue)
  4. getBiggerRang(BitSet bitSet)
  5. getBitSet()
  6. getLemma(String[] tokens, BitSet bits, String delimiter)
  7. getSetBitIndices(BitSet bitSet)
  8. hammingDistance(BitSet bs1, BitSet bs2)
  9. hasAtLeastOneBitSet(BitSet bitSet, Iterable indexes)