Java BitSet formatBitset(BitSet bitset, int width)

Here you can find the source of formatBitset(BitSet bitset, int width)

Description

format Bitset

License

Open Source License

Declaration

public static String formatBitset(BitSet bitset, int width) 

Method Source Code


//package com.java2s;
/*/*from  ww w . ja v  a 2s  . c om*/
 * Copyright (C) 2014 - 2015 Norman Kluge
 * 
 * This file is part of ASGlogic.
 * 
 * ASGlogic is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 * 
 * ASGlogic is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 * 
 * You should have received a copy of the GNU General Public License
 * along with ASGlogic.  If not, see <http://www.gnu.org/licenses/>.
 */

import java.util.BitSet;

public class Main {
    public static String formatBitset(BitSet bitset, int width) {
        StringBuilder str = new StringBuilder();
        for (int i = (width - 1); i >= 0; i--) {
            if (bitset.get(i)) {
                str.append("1");
            } else {
                str.append("0");
            }
        }
        return str.toString();
    }
}

Related

  1. filterByIndices(List list, BitSet filter)
  2. filtered(final Iterator iterator, final BitSet filter)
  3. findTrue(BitSet set)
  4. firstIndexOfChar(String sqlString, BitSet keys, int startindex)
  5. firstInvalidOctet(CharSequence cs, BitSet bits)
  6. generateBitSetBySize(int size, boolean initValue)
  7. getBiggerRang(BitSet bitSet)
  8. getBitSet()
  9. getBitSetFromBooleanArray(boolean[] buf)