List of utility methods to do Boolean Invert
boolean | invert(boolean b) Inverts the boolean input (true, false). Namely, if the input is true returns false and if the input is false returns true .
return !b;
|
boolean | invertLogic(final boolean logic, final boolean invert) Invert logic if specified return logic ^ invert;
|