Java Bit Flip flipBitAsBinaryString(int flipBit)

Here you can find the source of flipBitAsBinaryString(int flipBit)

Description

flip Bit As Binary String

License

Apache License

Declaration

public static int flipBitAsBinaryString(int flipBit) 

Method Source Code

//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
}

Related

  1. flip(int i)
  2. flip(int value)
  3. flip(long a)
  4. flipBitAt(int bitIndex, byte b)
  5. flipBits(byte[] bytes, int start, int bitLength)
  6. flipBits(int n)
  7. flipBits(int value)