Java Bit Flip flipBits(int value)

Here you can find the source of flipBits(int value)

Description

flip Bits

License

Open Source License

Declaration

public static final int flipBits(int value) 

Method Source Code

//package com.java2s;
/*/*from  w  w w  .ja v  a 2 s.co  m*/
Copyright 2009 Semantic Discovery, Inc. (www.semanticdiscovery.com)
    
This file is part of the Semantic Discovery Toolkit.
    
The Semantic Discovery Toolkit is free software: you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
    
The Semantic Discovery Toolkit is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU Lesser General Public License for more details.
    
You should have received a copy of the GNU Lesser General Public License
along with The Semantic Discovery Toolkit.  If not, see <http://www.gnu.org/licenses/>.
*/

public class Main {
    public static final int flipBits(int value) {
        return ~value;
    }

    public static final byte flipBits(byte value) {
        return (byte) (~value & 0xFF);
    }
}

Related

  1. flip(long a)
  2. flipBitAsBinaryString(int flipBit)
  3. flipBitAt(int bitIndex, byte b)
  4. flipBits(byte[] bytes, int start, int bitLength)
  5. flipBits(int n)
  6. flipC(long v, int off)
  7. FLIPENDIAN_INT32(int x)