Here you can find the source of and(int operand1, int operand2)
public static int and(int operand1, int operand2)
//package com.java2s; public class Main { public static int and(int operand1, int operand2) { return operand1 & operand2; }//from w w w . j a v a 2 s . c om }