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
    Constructor
    Description
     
  • Method Summary

    Modifier and Type
    Method
    Description
    static boolean
    Converts an object to boolean, according to the following logic: If it's null, false is returned. If it's a Boolean, the same object is returned. If it's any other object, the toString() value is converted to boolean.

    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

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Constructor Details

    • BooleanUtils

      public BooleanUtils()
  • Method Details

    • toBoolean

      public static boolean toBoolean(Object obj)
      Converts an object to boolean, according to the following logic:
      1. If it's null, false is returned.
      2. If it's a Boolean, the same object is returned.
      3. If it's any other object, the toString() value is converted to boolean.
      Parameters:
      obj -
      Returns:
      boolean value