Java Utililty Methods Bitwise Not

List of utility methods to do Bitwise Not

Description

The list of methods to do Bitwise Not are organized into topic(s).

Method

BytebitNot(Byte a)
bit Not
if (a == null) {
    a = 0;
return (byte) (~a);