Here you can find the source of flipBitAsBinaryString(int flipBit)
public static int flipBitAsBinaryString(int flipBit)
//package com.java2s; //License from project: Apache License public class Main { public static int flipBitAsBinaryString(int flipBit) { return 1 << flipBit; }//from w w w .j a v a 2 s .c o m }