Package org.craftercms.deployer.utils
Class BooleanUtils
java.lang.Object
org.apache.commons.lang3.BooleanUtils
org.craftercms.deployer.utils.BooleanUtils
public class BooleanUtils
extends org.apache.commons.lang3.BooleanUtils
Utility methods for booleans.
- Author:
- avasquez
-
Field Summary
Fields inherited from class org.apache.commons.lang3.BooleanUtils
FALSE, NO, OFF, ON, TRUE, YES -
Constructor Summary
Constructors -
Method Summary
Methods inherited from class org.apache.commons.lang3.BooleanUtils
and, and, booleanValues, compare, forEach, isFalse, isNotFalse, isNotTrue, isTrue, negate, oneHot, oneHot, or, or, primitiveValues, toBoolean, toBoolean, toBoolean, toBoolean, toBoolean, toBoolean, toBooleanDefaultIfNull, toBooleanObject, toBooleanObject, toBooleanObject, toBooleanObject, toBooleanObject, toBooleanObject, toInteger, toInteger, toInteger, toIntegerObject, toIntegerObject, toIntegerObject, toIntegerObject, toString, toString, toStringOnOff, toStringOnOff, toStringTrueFalse, toStringTrueFalse, toStringYesNo, toStringYesNo, values, xor, xor
-
Constructor Details
-
BooleanUtils
public BooleanUtils()
-
-
Method Details
-
toBoolean
Converts an object to boolean, according to the following logic:- If it's null,
falseis returned. - If it's a Boolean, the same object is returned.
- If it's any other object, the
toString()value is converted to boolean.
- Parameters:
obj-- Returns:
- boolean value
- If it's null,
-