BitSet.flip(int bitIndex) has the following syntax.
public void flip(int bitIndex)
In the following code shows how to use BitSet.flip(int bitIndex) method.
import java.util.BitSet; //from w ww .j av a 2 s . c o m public class Main { public static void main(String[] args) { BitSet bitset1 = new BitSet(8); // assign values to bitset1 bitset1.set(0); bitset1.set(1); bitset1.set(2); System.out.println(bitset1); bitset1.flip(1); System.out.println(bitset1); } }
The code above generates the following result.