Here you can find the source of clearBit(int number, int count)
public static int clearBit(int number, int count)
//package com.java2s; //License from project: Open Source License public class Main { public static int clearBit(int number, int count) { return number | 0x01 << count; }//from ww w .ja v a 2s. com }