Java BitSet not(BitSet bitSets)

Here you can find the source of not(BitSet bitSets)

Description

not

License

Apache License

Declaration

public static BitSet not(BitSet bitSets) 

Method Source Code

//package com.java2s;
//License from project: Apache License 

import java.util.BitSet;

public class Main {
    public static BitSet not(BitSet bitSets) {
        bitSets.flip(0, bitSets.size());
        return bitSets;
    }//from   ww  w .j  a va  2  s .c  o  m
}

Related

  1. longToBitSet(long value)
  2. mapToBitSet(Map map, String key)
  3. max(BitSet bits)
  4. members(BitSet set)
  5. nextClearBitModulo(int index, int poolSize, BitSet bitSet)
  6. or(BitSet bs1, BitSet bs2)
  7. pack(BitSet bitSet)
  8. padToByteBoundary(BitSet actualParameter, int sizeInBits, int byteBoundLength, boolean preserveFirstAsSign)
  9. parseBitSet(byte[] sfData, int offset, int length)