BooleanUtils.java

  1. /*
  2.  * Licensed to the Apache Software Foundation (ASF) under one or more
  3.  * contributor license agreements.  See the NOTICE file distributed with
  4.  * this work for additional information regarding copyright ownership.
  5.  * The ASF licenses this file to You under the Apache License, Version 2.0
  6.  * (the "License"); you may not use this file except in compliance with
  7.  * the License.  You may obtain a copy of the License at
  8.  *
  9.  *      http://www.apache.org/licenses/LICENSE-2.0
  10.  *
  11.  * Unless required by applicable law or agreed to in writing, software
  12.  * distributed under the License is distributed on an "AS IS" BASIS,
  13.  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  14.  * See the License for the specific language governing permissions and
  15.  * limitations under the License.
  16.  */
  17. package org.apache.commons.lang3;

  18. import java.util.Arrays;
  19. import java.util.Collections;
  20. import java.util.List;
  21. import java.util.function.Consumer;

  22. import org.apache.commons.lang3.math.NumberUtils;

  23. /**
  24.  * Operations on boolean primitives and Boolean objects.
  25.  *
  26.  * <p>This class tries to handle {@code null} input gracefully.
  27.  * An exception will not be thrown for a {@code null} input.
  28.  * Each method documents its behavior in more detail.</p>
  29.  *
  30.  * <p>#ThreadSafe#</p>
  31.  * @since 2.0
  32.  */
  33. public class BooleanUtils {

  34.     private static final List<Boolean> BOOLEAN_LIST = Collections.unmodifiableList(Arrays.asList(Boolean.FALSE, Boolean.TRUE));

  35.     /**
  36.      * The false String {@code "false"}.
  37.      *
  38.      * @since 3.12.0
  39.      */
  40.     public static final String FALSE = "false";

  41.     /**
  42.      * The no String {@code "no"}.
  43.      *
  44.      * @since 3.12.0
  45.      */
  46.     public static final String NO = "no";

  47.     /**
  48.      * The off String {@code "off"}.
  49.      *
  50.      * @since 3.12.0
  51.      */
  52.     public static final String OFF = "off";

  53.     /**
  54.      * The on String {@code "on"}.
  55.      *
  56.      * @since 3.12.0
  57.      */
  58.     public static final String ON = "on";

  59.     /**
  60.      * The true String {@code "true"}.
  61.      *
  62.      * @since 3.12.0
  63.      */
  64.     public static final String TRUE = "true";

  65.     /**
  66.      * The yes String {@code "yes"}.
  67.      *
  68.      * @since 3.12.0
  69.      */
  70.     public static final String YES = "yes";

  71.     /**
  72.      * Performs an 'and' operation on a set of booleans.
  73.      *
  74.      * <pre>
  75.      *   BooleanUtils.and(true, true)         = true
  76.      *   BooleanUtils.and(false, false)       = false
  77.      *   BooleanUtils.and(true, false)        = false
  78.      *   BooleanUtils.and(true, true, false)  = false
  79.      *   BooleanUtils.and(true, true, true)   = true
  80.      * </pre>
  81.      *
  82.      * @param array  an array of {@code boolean}s
  83.      * @return the result of the logical 'and' operation. That is {@code false}
  84.      * if any of the parameters is {@code false} and {@code true} otherwise.
  85.      * @throws NullPointerException if {@code array} is {@code null}
  86.      * @throws IllegalArgumentException if {@code array} is empty.
  87.      * @since 3.0.1
  88.      */
  89.     public static boolean and(final boolean... array) {
  90.         ObjectUtils.requireNonEmpty(array, "array");
  91.         for (final boolean element : array) {
  92.             if (!element) {
  93.                 return false;
  94.             }
  95.         }
  96.         return true;
  97.     }

  98.     /**
  99.      * Performs an 'and' operation on an array of Booleans.
  100.      * <pre>
  101.      *   BooleanUtils.and(Boolean.TRUE, Boolean.TRUE)                 = Boolean.TRUE
  102.      *   BooleanUtils.and(Boolean.FALSE, Boolean.FALSE)               = Boolean.FALSE
  103.      *   BooleanUtils.and(Boolean.TRUE, Boolean.FALSE)                = Boolean.FALSE
  104.      *   BooleanUtils.and(Boolean.TRUE, Boolean.TRUE, Boolean.TRUE)   = Boolean.TRUE
  105.      *   BooleanUtils.and(Boolean.FALSE, Boolean.FALSE, Boolean.TRUE) = Boolean.FALSE
  106.      *   BooleanUtils.and(Boolean.TRUE, Boolean.FALSE, Boolean.TRUE)  = Boolean.FALSE
  107.      *   BooleanUtils.and(null, null)                                 = Boolean.FALSE
  108.      * </pre>
  109.      * <p>
  110.      * Null array elements map to false, like {@code Boolean.parseBoolean(null)} and its callers return false.
  111.      * </p>
  112.      *
  113.      * @param array  an array of {@link Boolean}s
  114.      * @return the result of the logical 'and' operation. That is {@code false}
  115.      * if any of the parameters is {@code false} and {@code true} otherwise.
  116.      * @throws NullPointerException if {@code array} is {@code null}
  117.      * @throws IllegalArgumentException if {@code array} is empty.
  118.      * @since 3.0.1
  119.      */
  120.     public static Boolean and(final Boolean... array) {
  121.         ObjectUtils.requireNonEmpty(array, "array");
  122.         return and(ArrayUtils.toPrimitive(array)) ? Boolean.TRUE : Boolean.FALSE;
  123.     }

  124.     /**
  125.      * Returns a new array of possible values (like an enum would).
  126.      *
  127.      * @return a new array of possible values (like an enum would).
  128.      * @since 3.12.0
  129.      */
  130.     public static Boolean[] booleanValues() {
  131.         return new Boolean[] {Boolean.FALSE, Boolean.TRUE};
  132.     }

  133.     /**
  134.      * Compares two {@code boolean} values. This is the same functionality as provided in Java 7.
  135.      *
  136.      * @param x the first {@code boolean} to compare
  137.      * @param y the second {@code boolean} to compare
  138.      * @return the value {@code 0} if {@code x == y};
  139.      *         a value less than {@code 0} if {@code !x && y}; and
  140.      *         a value greater than {@code 0} if {@code x && !y}
  141.      * @since 3.4
  142.      */
  143.     public static int compare(final boolean x, final boolean y) {
  144.         if (x == y) {
  145.             return 0;
  146.         }
  147.         return x ? 1 : -1;
  148.     }

  149.     /**
  150.      * Performs the given action for each Boolean {@link BooleanUtils#values()}.
  151.      *
  152.      * @param action The action to be performed for each element
  153.      * @since 3.13.0
  154.      */
  155.     public static void forEach(final Consumer<Boolean> action) {
  156.         values().forEach(action);
  157.     }

  158.     /**
  159.      * Checks if a {@link Boolean} value is {@code false},
  160.      * handling {@code null} by returning {@code false}.
  161.      *
  162.      * <pre>
  163.      *   BooleanUtils.isFalse(Boolean.TRUE)  = false
  164.      *   BooleanUtils.isFalse(Boolean.FALSE) = true
  165.      *   BooleanUtils.isFalse(null)          = false
  166.      * </pre>
  167.      *
  168.      * @param bool  the boolean to check, null returns {@code false}
  169.      * @return {@code true} only if the input is non-{@code null} and {@code false}
  170.      * @since 2.1
  171.      */
  172.     public static boolean isFalse(final Boolean bool) {
  173.         return Boolean.FALSE.equals(bool);
  174.     }

  175.     /**
  176.      * Checks if a {@link Boolean} value is <em>not</em> {@code false},
  177.      * handling {@code null} by returning {@code true}.
  178.      *
  179.      * <pre>
  180.      *   BooleanUtils.isNotFalse(Boolean.TRUE)  = true
  181.      *   BooleanUtils.isNotFalse(Boolean.FALSE) = false
  182.      *   BooleanUtils.isNotFalse(null)          = true
  183.      * </pre>
  184.      *
  185.      * @param bool  the boolean to check, null returns {@code true}
  186.      * @return {@code true} if the input is {@code null} or {@code true}
  187.      * @since 2.3
  188.      */
  189.     public static boolean isNotFalse(final Boolean bool) {
  190.         return !isFalse(bool);
  191.     }

  192.     /**
  193.      * Checks if a {@link Boolean} value is <em>not</em> {@code true},
  194.      * handling {@code null} by returning {@code true}.
  195.      *
  196.      * <pre>
  197.      *   BooleanUtils.isNotTrue(Boolean.TRUE)  = false
  198.      *   BooleanUtils.isNotTrue(Boolean.FALSE) = true
  199.      *   BooleanUtils.isNotTrue(null)          = true
  200.      * </pre>
  201.      *
  202.      * @param bool  the boolean to check, null returns {@code true}
  203.      * @return {@code true} if the input is null or false
  204.      * @since 2.3
  205.      */
  206.     public static boolean isNotTrue(final Boolean bool) {
  207.         return !isTrue(bool);
  208.     }

  209.     /**
  210.      * Checks if a {@link Boolean} value is {@code true},
  211.      * handling {@code null} by returning {@code false}.
  212.      *
  213.      * <pre>
  214.      *   BooleanUtils.isTrue(Boolean.TRUE)  = true
  215.      *   BooleanUtils.isTrue(Boolean.FALSE) = false
  216.      *   BooleanUtils.isTrue(null)          = false
  217.      * </pre>
  218.      *
  219.      * @param bool the boolean to check, {@code null} returns {@code false}
  220.      * @return {@code true} only if the input is non-null and true
  221.      * @since 2.1
  222.      */
  223.     public static boolean isTrue(final Boolean bool) {
  224.         return Boolean.TRUE.equals(bool);
  225.     }
  226.     /**
  227.      * Negates the specified boolean.
  228.      *
  229.      * <p>If {@code null} is passed in, {@code null} will be returned.</p>
  230.      *
  231.      * <p>NOTE: This returns {@code null} and will throw a {@link NullPointerException}
  232.      * if unboxed to a boolean.</p>
  233.      *
  234.      * <pre>
  235.      *   BooleanUtils.negate(Boolean.TRUE)  = Boolean.FALSE;
  236.      *   BooleanUtils.negate(Boolean.FALSE) = Boolean.TRUE;
  237.      *   BooleanUtils.negate(null)          = null;
  238.      * </pre>
  239.      *
  240.      * @param bool  the Boolean to negate, may be null
  241.      * @return the negated Boolean, or {@code null} if {@code null} input
  242.      */
  243.     public static Boolean negate(final Boolean bool) {
  244.         if (bool == null) {
  245.             return null;
  246.         }
  247.         return bool.booleanValue() ? Boolean.FALSE : Boolean.TRUE;
  248.     }

  249.     /**
  250.      * Performs a one-hot on an array of booleans.
  251.      * <p>
  252.      * This implementation returns true if one, and only one, of the supplied values is true.
  253.      * </p>
  254.      * <p>
  255.      * See also <a href="https://en.wikipedia.org/wiki/One-hot">One-hot</a>.
  256.      * </p>
  257.      * @param array  an array of {@code boolean}s
  258.      * @return the result of the one-hot operations
  259.      * @throws NullPointerException if {@code array} is {@code null}
  260.      * @throws IllegalArgumentException if {@code array} is empty.
  261.      */
  262.     public static boolean oneHot(final boolean... array) {
  263.         ObjectUtils.requireNonEmpty(array, "array");
  264.         boolean result = false;
  265.         for (final boolean element: array) {
  266.             if (element) {
  267.                 if (result) {
  268.                     return false;
  269.                 }
  270.                 result = true;
  271.             }
  272.         }
  273.         return result;
  274.     }

  275.     /**
  276.      * Performs a one-hot on an array of booleans.
  277.      * <p>
  278.      * This implementation returns true if one, and only one, of the supplied values is true.
  279.      * </p>
  280.      * <p>
  281.      * Null array elements map to false, like {@code Boolean.parseBoolean(null)} and its callers return false.
  282.      * </p>
  283.      * <p>
  284.      * See also <a href="https://en.wikipedia.org/wiki/One-hot">One-hot</a>.
  285.      * </p>
  286.      *
  287.      * @param array  an array of {@code boolean}s
  288.      * @return the result of the one-hot operations
  289.      * @throws NullPointerException if {@code array} is {@code null}
  290.      * @throws IllegalArgumentException if {@code array} is empty.
  291.      */
  292.     public static Boolean oneHot(final Boolean... array) {
  293.         return Boolean.valueOf(oneHot(ArrayUtils.toPrimitive(array)));
  294.     }

  295.     /**
  296.      * Performs an 'or' operation on a set of booleans.
  297.      *
  298.      * <pre>
  299.      *   BooleanUtils.or(true, true)          = true
  300.      *   BooleanUtils.or(false, false)        = false
  301.      *   BooleanUtils.or(true, false)         = true
  302.      *   BooleanUtils.or(true, true, false)   = true
  303.      *   BooleanUtils.or(true, true, true)    = true
  304.      *   BooleanUtils.or(false, false, false) = false
  305.      * </pre>
  306.      *
  307.      * @param array  an array of {@code boolean}s
  308.      * @return {@code true} if any of the arguments is {@code true}, and it returns {@code false} otherwise.
  309.      * @throws NullPointerException if {@code array} is {@code null}
  310.      * @throws IllegalArgumentException if {@code array} is empty.
  311.      * @since 3.0.1
  312.      */
  313.     public static boolean or(final boolean... array) {
  314.         ObjectUtils.requireNonEmpty(array, "array");
  315.         for (final boolean element : array) {
  316.             if (element) {
  317.                 return true;
  318.             }
  319.         }
  320.         return false;
  321.     }

  322.     /**
  323.      * Performs an 'or' operation on an array of Booleans.
  324.      * <pre>
  325.      *   BooleanUtils.or(Boolean.TRUE, Boolean.TRUE)                  = Boolean.TRUE
  326.      *   BooleanUtils.or(Boolean.FALSE, Boolean.FALSE)                = Boolean.FALSE
  327.      *   BooleanUtils.or(Boolean.TRUE, Boolean.FALSE)                 = Boolean.TRUE
  328.      *   BooleanUtils.or(Boolean.TRUE, Boolean.TRUE, Boolean.TRUE)    = Boolean.TRUE
  329.      *   BooleanUtils.or(Boolean.FALSE, Boolean.FALSE, Boolean.TRUE)  = Boolean.TRUE
  330.      *   BooleanUtils.or(Boolean.TRUE, Boolean.FALSE, Boolean.TRUE)   = Boolean.TRUE
  331.      *   BooleanUtils.or(Boolean.FALSE, Boolean.FALSE, Boolean.FALSE) = Boolean.FALSE
  332.      *   BooleanUtils.or(Boolean.TRUE, null)                          = Boolean.TRUE
  333.      *   BooleanUtils.or(Boolean.FALSE, null)                         = Boolean.FALSE
  334.      * </pre>
  335.      * <p>
  336.      * Null array elements map to false, like {@code Boolean.parseBoolean(null)} and its callers return false.
  337.      * </p>
  338.      *
  339.      * @param array  an array of {@link Boolean}s
  340.      * @return {@code true} if any of the arguments is {@code true}, and it returns {@code false} otherwise.
  341.      * @throws NullPointerException if {@code array} is {@code null}
  342.      * @throws IllegalArgumentException if {@code array} is empty.
  343.      * @since 3.0.1
  344.      */
  345.     public static Boolean or(final Boolean... array) {
  346.         ObjectUtils.requireNonEmpty(array, "array");
  347.         return or(ArrayUtils.toPrimitive(array)) ? Boolean.TRUE : Boolean.FALSE;
  348.     }

  349.     /**
  350.      * Returns a new array of possible values (like an enum would).
  351.      * @return a new array of possible values (like an enum would).
  352.      * @since 3.12.0
  353.      */
  354.     public static boolean[] primitiveValues() {
  355.         return new boolean[] {false, true};
  356.     }

  357.     /**
  358.      * Converts a Boolean to a boolean handling {@code null}
  359.      * by returning {@code false}.
  360.      *
  361.      * <pre>
  362.      *   BooleanUtils.toBoolean(Boolean.TRUE)  = true
  363.      *   BooleanUtils.toBoolean(Boolean.FALSE) = false
  364.      *   BooleanUtils.toBoolean(null)          = false
  365.      * </pre>
  366.      *
  367.      * @param bool  the boolean to convert
  368.      * @return {@code true} or {@code false}, {@code null} returns {@code false}
  369.      */
  370.     public static boolean toBoolean(final Boolean bool) {
  371.         return bool != null && bool.booleanValue();
  372.     }

  373.     /**
  374.      * Converts an int to a boolean using the convention that {@code zero}
  375.      * is {@code false}, everything else is {@code true}.
  376.      *
  377.      * <pre>
  378.      *   BooleanUtils.toBoolean(0) = false
  379.      *   BooleanUtils.toBoolean(1) = true
  380.      *   BooleanUtils.toBoolean(2) = true
  381.      * </pre>
  382.      *
  383.      * @param value  the int to convert
  384.      * @return {@code true} if non-zero, {@code false}
  385.      *  if zero
  386.      */
  387.     public static boolean toBoolean(final int value) {
  388.         return value != 0;
  389.     }

  390.     /**
  391.      * Converts an int to a boolean specifying the conversion values.
  392.      *
  393.      * <p>If the {@code trueValue} and {@code falseValue} are the same number then
  394.      * the return value will be {@code true} in case {@code value} matches it.</p>
  395.      *
  396.      * <pre>
  397.      *   BooleanUtils.toBoolean(0, 1, 0) = false
  398.      *   BooleanUtils.toBoolean(1, 1, 0) = true
  399.      *   BooleanUtils.toBoolean(1, 1, 1) = true
  400.      *   BooleanUtils.toBoolean(2, 1, 2) = false
  401.      *   BooleanUtils.toBoolean(2, 2, 0) = true
  402.      * </pre>
  403.      *
  404.      * @param value  the {@link Integer} to convert
  405.      * @param trueValue  the value to match for {@code true}
  406.      * @param falseValue  the value to match for {@code false}
  407.      * @return {@code true} or {@code false}
  408.      * @throws IllegalArgumentException if {@code value} does not match neither
  409.      * {@code trueValue} no {@code falseValue}
  410.      */
  411.     public static boolean toBoolean(final int value, final int trueValue, final int falseValue) {
  412.         if (value == trueValue) {
  413.             return true;
  414.         }
  415.         if (value == falseValue) {
  416.             return false;
  417.         }
  418.         throw new IllegalArgumentException("The Integer did not match either specified value");
  419.     }

  420.     /**
  421.      * Converts an Integer to a boolean specifying the conversion values.
  422.      *
  423.      * <pre>
  424.      *   BooleanUtils.toBoolean(Integer.valueOf(0), Integer.valueOf(1), Integer.valueOf(0)) = false
  425.      *   BooleanUtils.toBoolean(Integer.valueOf(1), Integer.valueOf(1), Integer.valueOf(0)) = true
  426.      *   BooleanUtils.toBoolean(Integer.valueOf(2), Integer.valueOf(1), Integer.valueOf(2)) = false
  427.      *   BooleanUtils.toBoolean(Integer.valueOf(2), Integer.valueOf(2), Integer.valueOf(0)) = true
  428.      *   BooleanUtils.toBoolean(null, null, Integer.valueOf(0))                     = true
  429.      * </pre>
  430.      *
  431.      * @param value  the Integer to convert
  432.      * @param trueValue  the value to match for {@code true}, may be {@code null}
  433.      * @param falseValue  the value to match for {@code false}, may be {@code null}
  434.      * @return {@code true} or {@code false}
  435.      * @throws IllegalArgumentException if no match
  436.      */
  437.     public static boolean toBoolean(final Integer value, final Integer trueValue, final Integer falseValue) {
  438.         if (value == null) {
  439.             if (trueValue == null) {
  440.                 return true;
  441.             }
  442.             if (falseValue == null) {
  443.                 return false;
  444.             }
  445.         } else if (value.equals(trueValue)) {
  446.             return true;
  447.         } else if (value.equals(falseValue)) {
  448.             return false;
  449.         }
  450.         throw new IllegalArgumentException("The Integer did not match either specified value");
  451.     }

  452.     /**
  453.      * Converts a String to a boolean (optimized for performance).
  454.      *
  455.      * <p>{@code 'true'}, {@code 'on'}, {@code 'y'}, {@code 't'} or {@code 'yes'}
  456.      * (case insensitive) will return {@code true}. Otherwise,
  457.      * {@code false} is returned.</p>
  458.      *
  459.      * <p>This method performs 4 times faster (JDK1.4) than
  460.      * {@code Boolean.valueOf(String)}. However, this method accepts
  461.      * 'on' and 'yes', 't', 'y' as true values.
  462.      *
  463.      * <pre>
  464.      *   BooleanUtils.toBoolean(null)    = false
  465.      *   BooleanUtils.toBoolean("true")  = true
  466.      *   BooleanUtils.toBoolean("TRUE")  = true
  467.      *   BooleanUtils.toBoolean("tRUe")  = true
  468.      *   BooleanUtils.toBoolean("on")    = true
  469.      *   BooleanUtils.toBoolean("yes")   = true
  470.      *   BooleanUtils.toBoolean("false") = false
  471.      *   BooleanUtils.toBoolean("x gti") = false
  472.      *   BooleanUtils.toBoolean("y") = true
  473.      *   BooleanUtils.toBoolean("n") = false
  474.      *   BooleanUtils.toBoolean("t") = true
  475.      *   BooleanUtils.toBoolean("f") = false
  476.      * </pre>
  477.      *
  478.      * @param str  the String to check
  479.      * @return the boolean value of the string, {@code false} if no match or the String is null
  480.      */
  481.     public static boolean toBoolean(final String str) {
  482.         return toBooleanObject(str) == Boolean.TRUE;
  483.     }

  484.     /**
  485.      * Converts a String to a Boolean throwing an exception if no match found.
  486.      *
  487.      * <pre>
  488.      *   BooleanUtils.toBoolean("true", "true", "false")  = true
  489.      *   BooleanUtils.toBoolean("false", "true", "false") = false
  490.      * </pre>
  491.      *
  492.      * @param str  the String to check
  493.      * @param trueString  the String to match for {@code true} (case-sensitive), may be {@code null}
  494.      * @param falseString  the String to match for {@code false} (case-sensitive), may be {@code null}
  495.      * @return the boolean value of the string
  496.      * @throws IllegalArgumentException if the String doesn't match
  497.      */
  498.     public static boolean toBoolean(final String str, final String trueString, final String falseString) {
  499.         if (str == trueString) {
  500.             return true;
  501.         }
  502.         if (str == falseString) {
  503.             return false;
  504.         }
  505.         if (str != null) {
  506.             if (str.equals(trueString)) {
  507.                 return true;
  508.             }
  509.             if (str.equals(falseString)) {
  510.                 return false;
  511.             }
  512.         }
  513.         throw new IllegalArgumentException("The String did not match either specified value");
  514.     }

  515.     /**
  516.      * Converts a Boolean to a boolean handling {@code null}.
  517.      *
  518.      * <pre>
  519.      *   BooleanUtils.toBooleanDefaultIfNull(Boolean.TRUE, false)  = true
  520.      *   BooleanUtils.toBooleanDefaultIfNull(Boolean.TRUE, true)   = true
  521.      *   BooleanUtils.toBooleanDefaultIfNull(Boolean.FALSE, true)  = false
  522.      *   BooleanUtils.toBooleanDefaultIfNull(Boolean.FALSE, false) = false
  523.      *   BooleanUtils.toBooleanDefaultIfNull(null, true)           = true
  524.      *   BooleanUtils.toBooleanDefaultIfNull(null, false)          = false
  525.      * </pre>
  526.      *
  527.      * @param bool  the boolean object to convert to primitive
  528.      * @param valueIfNull  the boolean value to return if the parameter {@code bool} is {@code null}
  529.      * @return {@code true} or {@code false}
  530.      */
  531.     public static boolean toBooleanDefaultIfNull(final Boolean bool, final boolean valueIfNull) {
  532.         if (bool == null) {
  533.             return valueIfNull;
  534.         }
  535.         return bool.booleanValue();
  536.     }

  537.     /**
  538.      * Converts an int to a Boolean using the convention that {@code zero}
  539.      * is {@code false}, everything else is {@code true}.
  540.      *
  541.      * <pre>
  542.      *   BooleanUtils.toBoolean(0) = Boolean.FALSE
  543.      *   BooleanUtils.toBoolean(1) = Boolean.TRUE
  544.      *   BooleanUtils.toBoolean(2) = Boolean.TRUE
  545.      * </pre>
  546.      *
  547.      * @param value  the int to convert
  548.      * @return Boolean.TRUE if non-zero, Boolean.FALSE if zero,
  549.      *  {@code null} if {@code null}
  550.      */
  551.     public static Boolean toBooleanObject(final int value) {
  552.         return value == 0 ? Boolean.FALSE : Boolean.TRUE;
  553.     }

  554.     /**
  555.      * Converts an int to a Boolean specifying the conversion values.
  556.      *
  557.      * <p>NOTE: This method may return {@code null} and may throw a {@link NullPointerException}
  558.      * if unboxed to a {@code boolean}.</p>
  559.      *
  560.      * <p>The checks are done first for the {@code trueValue}, then for the {@code falseValue} and
  561.      * finally for the {@code nullValue}.</p>
  562.      *
  563.      * <pre>
  564.      *   BooleanUtils.toBooleanObject(0, 0, 2, 3) = Boolean.TRUE
  565.      *   BooleanUtils.toBooleanObject(0, 0, 0, 3) = Boolean.TRUE
  566.      *   BooleanUtils.toBooleanObject(0, 0, 0, 0) = Boolean.TRUE
  567.      *   BooleanUtils.toBooleanObject(2, 1, 2, 3) = Boolean.FALSE
  568.      *   BooleanUtils.toBooleanObject(2, 1, 2, 2) = Boolean.FALSE
  569.      *   BooleanUtils.toBooleanObject(3, 1, 2, 3) = null
  570.      * </pre>
  571.      *
  572.      * @param value  the Integer to convert
  573.      * @param trueValue  the value to match for {@code true}
  574.      * @param falseValue  the value to match for {@code false}
  575.      * @param nullValue  the value to match for {@code null}
  576.      * @return Boolean.TRUE, Boolean.FALSE, or {@code null}
  577.      * @throws IllegalArgumentException if no match
  578.      */
  579.     public static Boolean toBooleanObject(final int value, final int trueValue, final int falseValue, final int nullValue) {
  580.         if (value == trueValue) {
  581.             return Boolean.TRUE;
  582.         }
  583.         if (value == falseValue) {
  584.             return Boolean.FALSE;
  585.         }
  586.         if (value == nullValue) {
  587.             return null;
  588.         }
  589.         throw new IllegalArgumentException("The Integer did not match any specified value");
  590.     }

  591.     /**
  592.      * Converts an Integer to a Boolean using the convention that {@code zero}
  593.      * is {@code false}, every other numeric value is {@code true}.
  594.      *
  595.      * <p>{@code null} will be converted to {@code null}.</p>
  596.      *
  597.      * <p>NOTE: This method may return {@code null} and may throw a {@link NullPointerException}
  598.      * if unboxed to a {@code boolean}.</p>
  599.      *
  600.      * <pre>
  601.      *   BooleanUtils.toBooleanObject(Integer.valueOf(0))    = Boolean.FALSE
  602.      *   BooleanUtils.toBooleanObject(Integer.valueOf(1))    = Boolean.TRUE
  603.      *   BooleanUtils.toBooleanObject(Integer.valueOf(null)) = null
  604.      * </pre>
  605.      *
  606.      * @param value  the Integer to convert
  607.      * @return Boolean.TRUE if non-zero, Boolean.FALSE if zero,
  608.      *  {@code null} if {@code null} input
  609.      */
  610.     public static Boolean toBooleanObject(final Integer value) {
  611.         if (value == null) {
  612.             return null;
  613.         }
  614.         return value.intValue() == 0 ? Boolean.FALSE : Boolean.TRUE;
  615.     }

  616.     /**
  617.      * Converts an Integer to a Boolean specifying the conversion values.
  618.      *
  619.      * <p>NOTE: This method may return {@code null} and may throw a {@link NullPointerException}
  620.      * if unboxed to a {@code boolean}.</p>
  621.      *
  622.      * <p>The checks are done first for the {@code trueValue}, then for the {@code falseValue} and
  623.      * finally for the {@code nullValue}.</p>
  624.      **
  625.      * <pre>
  626.      *   BooleanUtils.toBooleanObject(Integer.valueOf(0), Integer.valueOf(0), Integer.valueOf(2), Integer.valueOf(3)) = Boolean.TRUE
  627.      *   BooleanUtils.toBooleanObject(Integer.valueOf(0), Integer.valueOf(0), Integer.valueOf(0), Integer.valueOf(3)) = Boolean.TRUE
  628.      *   BooleanUtils.toBooleanObject(Integer.valueOf(0), Integer.valueOf(0), Integer.valueOf(0), Integer.valueOf(0)) = Boolean.TRUE
  629.      *   BooleanUtils.toBooleanObject(Integer.valueOf(2), Integer.valueOf(1), Integer.valueOf(2), Integer.valueOf(3)) = Boolean.FALSE
  630.      *   BooleanUtils.toBooleanObject(Integer.valueOf(2), Integer.valueOf(1), Integer.valueOf(2), Integer.valueOf(2)) = Boolean.FALSE
  631.      *   BooleanUtils.toBooleanObject(Integer.valueOf(3), Integer.valueOf(1), Integer.valueOf(2), Integer.valueOf(3)) = null
  632.      * </pre>
  633.      *
  634.      * @param value  the Integer to convert
  635.      * @param trueValue  the value to match for {@code true}, may be {@code null}
  636.      * @param falseValue  the value to match for {@code false}, may be {@code null}
  637.      * @param nullValue  the value to match for {@code null}, may be {@code null}
  638.      * @return Boolean.TRUE, Boolean.FALSE, or {@code null}
  639.      * @throws IllegalArgumentException if no match
  640.      */
  641.     public static Boolean toBooleanObject(final Integer value, final Integer trueValue, final Integer falseValue, final Integer nullValue) {
  642.         if (value == null) {
  643.             if (trueValue == null) {
  644.                 return Boolean.TRUE;
  645.             }
  646.             if (falseValue == null) {
  647.                 return Boolean.FALSE;
  648.             }
  649.             if (nullValue == null) {
  650.                 return null;
  651.             }
  652.         } else if (value.equals(trueValue)) {
  653.             return Boolean.TRUE;
  654.         } else if (value.equals(falseValue)) {
  655.             return Boolean.FALSE;
  656.         } else if (value.equals(nullValue)) {
  657.             return null;
  658.         }
  659.         throw new IllegalArgumentException("The Integer did not match any specified value");
  660.     }

  661.     /**
  662.      * Converts a String to a Boolean.
  663.      *
  664.      * <p>{@code 'true'}, {@code 'on'}, {@code 'y'}, {@code 't'}, {@code 'yes'}
  665.      * or {@code '1'} (case insensitive) will return {@code true}.
  666.      * {@code 'false'}, {@code 'off'}, {@code 'n'}, {@code 'f'}, {@code 'no'}
  667.      * or {@code '0'} (case insensitive) will return {@code false}.
  668.      * Otherwise, {@code null} is returned.</p>
  669.      *
  670.      * <p>NOTE: This method may return {@code null} and may throw a {@link NullPointerException}
  671.      * if unboxed to a {@code boolean}.</p>
  672.      *
  673.      * <pre>
  674.      *   // N.B. case is not significant
  675.      *   BooleanUtils.toBooleanObject(null)    = null
  676.      *   BooleanUtils.toBooleanObject("true")  = Boolean.TRUE
  677.      *   BooleanUtils.toBooleanObject("T")     = Boolean.TRUE // i.e. T[RUE]
  678.      *   BooleanUtils.toBooleanObject("false") = Boolean.FALSE
  679.      *   BooleanUtils.toBooleanObject("f")     = Boolean.FALSE // i.e. f[alse]
  680.      *   BooleanUtils.toBooleanObject("No")    = Boolean.FALSE
  681.      *   BooleanUtils.toBooleanObject("n")     = Boolean.FALSE // i.e. n[o]
  682.      *   BooleanUtils.toBooleanObject("on")    = Boolean.TRUE
  683.      *   BooleanUtils.toBooleanObject("ON")    = Boolean.TRUE
  684.      *   BooleanUtils.toBooleanObject("off")   = Boolean.FALSE
  685.      *   BooleanUtils.toBooleanObject("oFf")   = Boolean.FALSE
  686.      *   BooleanUtils.toBooleanObject("yes")   = Boolean.TRUE
  687.      *   BooleanUtils.toBooleanObject("Y")     = Boolean.TRUE // i.e. Y[ES]
  688.      *   BooleanUtils.toBooleanObject("1")     = Boolean.TRUE
  689.      *   BooleanUtils.toBooleanObject("0")     = Boolean.FALSE
  690.      *   BooleanUtils.toBooleanObject("blue")  = null
  691.      *   BooleanUtils.toBooleanObject("true ") = null // trailing space (too long)
  692.      *   BooleanUtils.toBooleanObject("ono")   = null // does not match on or no
  693.      * </pre>
  694.      *
  695.      * @param str  the String to check; upper and lower case are treated as the same
  696.      * @return the Boolean value of the string, {@code null} if no match or {@code null} input
  697.      */
  698.     public static Boolean toBooleanObject(final String str) {
  699.         // Previously used equalsIgnoreCase, which was fast for interned 'true'.
  700.         // Non interned 'true' matched 15 times slower.
  701.         //
  702.         // Optimisation provides same performance as before for interned 'true'.
  703.         // Similar performance for null, 'false', and other strings not length 2/3/4.
  704.         // 'true'/'TRUE' match 4 times slower, 'tRUE'/'True' 7 times slower.
  705.         if (str == TRUE) {
  706.             return Boolean.TRUE;
  707.         }
  708.         if (str == null) {
  709.             return null;
  710.         }
  711.         switch (str.length()) {
  712.             case 1: {
  713.                 final char ch0 = str.charAt(0);
  714.                 if (ch0 == 'y' || ch0 == 'Y' ||
  715.                     ch0 == 't' || ch0 == 'T' ||
  716.                     ch0 == '1') {
  717.                     return Boolean.TRUE;
  718.                 }
  719.                 if (ch0 == 'n' || ch0 == 'N' ||
  720.                     ch0 == 'f' || ch0 == 'F' ||
  721.                     ch0 == '0') {
  722.                     return Boolean.FALSE;
  723.                 }
  724.                 break;
  725.             }
  726.             case 2: {
  727.                 final char ch0 = str.charAt(0);
  728.                 final char ch1 = str.charAt(1);
  729.                 if ((ch0 == 'o' || ch0 == 'O') &&
  730.                     (ch1 == 'n' || ch1 == 'N') ) {
  731.                     return Boolean.TRUE;
  732.                 }
  733.                 if ((ch0 == 'n' || ch0 == 'N') &&
  734.                     (ch1 == 'o' || ch1 == 'O') ) {
  735.                     return Boolean.FALSE;
  736.                 }
  737.                 break;
  738.             }
  739.             case 3: {
  740.                 final char ch0 = str.charAt(0);
  741.                 final char ch1 = str.charAt(1);
  742.                 final char ch2 = str.charAt(2);
  743.                 if ((ch0 == 'y' || ch0 == 'Y') &&
  744.                     (ch1 == 'e' || ch1 == 'E') &&
  745.                     (ch2 == 's' || ch2 == 'S') ) {
  746.                     return Boolean.TRUE;
  747.                 }
  748.                 if ((ch0 == 'o' || ch0 == 'O') &&
  749.                     (ch1 == 'f' || ch1 == 'F') &&
  750.                     (ch2 == 'f' || ch2 == 'F') ) {
  751.                     return Boolean.FALSE;
  752.                 }
  753.                 break;
  754.             }
  755.             case 4: {
  756.                 final char ch0 = str.charAt(0);
  757.                 final char ch1 = str.charAt(1);
  758.                 final char ch2 = str.charAt(2);
  759.                 final char ch3 = str.charAt(3);
  760.                 if ((ch0 == 't' || ch0 == 'T') &&
  761.                     (ch1 == 'r' || ch1 == 'R') &&
  762.                     (ch2 == 'u' || ch2 == 'U') &&
  763.                     (ch3 == 'e' || ch3 == 'E') ) {
  764.                     return Boolean.TRUE;
  765.                 }
  766.                 break;
  767.             }
  768.             case 5: {
  769.                 final char ch0 = str.charAt(0);
  770.                 final char ch1 = str.charAt(1);
  771.                 final char ch2 = str.charAt(2);
  772.                 final char ch3 = str.charAt(3);
  773.                 final char ch4 = str.charAt(4);
  774.                 if ((ch0 == 'f' || ch0 == 'F') &&
  775.                     (ch1 == 'a' || ch1 == 'A') &&
  776.                     (ch2 == 'l' || ch2 == 'L') &&
  777.                     (ch3 == 's' || ch3 == 'S') &&
  778.                     (ch4 == 'e' || ch4 == 'E') ) {
  779.                     return Boolean.FALSE;
  780.                 }
  781.                 break;
  782.             }
  783.         default:
  784.             break;
  785.         }

  786.         return null;
  787.     }

  788.     /**
  789.      * Converts a String to a Boolean throwing an exception if no match.
  790.      *
  791.      * <p>NOTE: This method may return {@code null} and may throw a {@link NullPointerException}
  792.      * if unboxed to a {@code boolean}.</p>
  793.      *
  794.      * <pre>
  795.      *   BooleanUtils.toBooleanObject("true", "true", "false", "null")   = Boolean.TRUE
  796.      *   BooleanUtils.toBooleanObject(null, null, "false", "null")       = Boolean.TRUE
  797.      *   BooleanUtils.toBooleanObject(null, null, null, "null")          = Boolean.TRUE
  798.      *   BooleanUtils.toBooleanObject(null, null, null, null)            = Boolean.TRUE
  799.      *   BooleanUtils.toBooleanObject("false", "true", "false", "null")  = Boolean.FALSE
  800.      *   BooleanUtils.toBooleanObject("false", "true", "false", "false") = Boolean.FALSE
  801.      *   BooleanUtils.toBooleanObject(null, "true", null, "false")       = Boolean.FALSE
  802.      *   BooleanUtils.toBooleanObject(null, "true", null, null)          = Boolean.FALSE
  803.      *   BooleanUtils.toBooleanObject("null", "true", "false", "null")   = null
  804.      * </pre>
  805.      *
  806.      * @param str  the String to check
  807.      * @param trueString  the String to match for {@code true} (case-sensitive), may be {@code null}
  808.      * @param falseString  the String to match for {@code false} (case-sensitive), may be {@code null}
  809.      * @param nullString  the String to match for {@code null} (case-sensitive), may be {@code null}
  810.      * @return the Boolean value of the string, {@code null} if either the String matches {@code nullString}
  811.      *  or if {@code null} input and {@code nullString} is {@code null}
  812.      * @throws IllegalArgumentException if the String doesn't match
  813.      */
  814.     public static Boolean toBooleanObject(final String str, final String trueString, final String falseString, final String nullString) {
  815.         if (str == null) {
  816.             if (trueString == null) {
  817.                 return Boolean.TRUE;
  818.             }
  819.             if (falseString == null) {
  820.                 return Boolean.FALSE;
  821.             }
  822.             if (nullString == null) {
  823.                 return null;
  824.             }
  825.         } else if (str.equals(trueString)) {
  826.             return Boolean.TRUE;
  827.         } else if (str.equals(falseString)) {
  828.             return Boolean.FALSE;
  829.         } else if (str.equals(nullString)) {
  830.             return null;
  831.         }
  832.         // no match
  833.         throw new IllegalArgumentException("The String did not match any specified value");
  834.     }

  835.     /**
  836.      * Converts a boolean to an int using the convention that
  837.      * {@code true} is {@code 1} and {@code false} is {@code 0}.
  838.      *
  839.      * <pre>
  840.      *   BooleanUtils.toInteger(true)  = 1
  841.      *   BooleanUtils.toInteger(false) = 0
  842.      * </pre>
  843.      *
  844.      * @param bool  the boolean to convert
  845.      * @return one if {@code true}, zero if {@code false}
  846.      */
  847.     public static int toInteger(final boolean bool) {
  848.         return bool ? 1 : 0;
  849.     }

  850.     /**
  851.      * Converts a boolean to an int specifying the conversion values.
  852.      *
  853.      * <pre>
  854.      *   BooleanUtils.toInteger(true, 1, 0)  = 1
  855.      *   BooleanUtils.toInteger(false, 1, 0) = 0
  856.      * </pre>
  857.      *
  858.      * @param bool  the to convert
  859.      * @param trueValue  the value to return if {@code true}
  860.      * @param falseValue  the value to return if {@code false}
  861.      * @return the appropriate value
  862.      */
  863.     public static int toInteger(final boolean bool, final int trueValue, final int falseValue) {
  864.         return bool ? trueValue : falseValue;
  865.     }

  866.     /**
  867.      * Converts a Boolean to an int specifying the conversion values.
  868.      *
  869.      * <pre>
  870.      *   BooleanUtils.toInteger(Boolean.TRUE, 1, 0, 2)  = 1
  871.      *   BooleanUtils.toInteger(Boolean.FALSE, 1, 0, 2) = 0
  872.      *   BooleanUtils.toInteger(null, 1, 0, 2)          = 2
  873.      * </pre>
  874.      *
  875.      * @param bool  the Boolean to convert
  876.      * @param trueValue  the value to return if {@code true}
  877.      * @param falseValue  the value to return if {@code false}
  878.      * @param nullValue  the value to return if {@code null}
  879.      * @return the appropriate value
  880.      */
  881.     public static int toInteger(final Boolean bool, final int trueValue, final int falseValue, final int nullValue) {
  882.         if (bool == null) {
  883.             return nullValue;
  884.         }
  885.         return bool.booleanValue() ? trueValue : falseValue;
  886.     }

  887.     /**
  888.      * Converts a boolean to an Integer using the convention that
  889.      * {@code true} is {@code 1} and {@code false} is {@code 0}.
  890.      *
  891.      * <pre>
  892.      *   BooleanUtils.toIntegerObject(true)  = Integer.valueOf(1)
  893.      *   BooleanUtils.toIntegerObject(false) = Integer.valueOf(0)
  894.      * </pre>
  895.      *
  896.      * @param bool  the boolean to convert
  897.      * @return one if {@code true}, zero if {@code false}
  898.      */
  899.     public static Integer toIntegerObject(final boolean bool) {
  900.         return bool ? NumberUtils.INTEGER_ONE : NumberUtils.INTEGER_ZERO;
  901.     }

  902.     /**
  903.      * Converts a boolean to an Integer specifying the conversion values.
  904.      *
  905.      * <pre>
  906.      *   BooleanUtils.toIntegerObject(true, Integer.valueOf(1), Integer.valueOf(0))  = Integer.valueOf(1)
  907.      *   BooleanUtils.toIntegerObject(false, Integer.valueOf(1), Integer.valueOf(0)) = Integer.valueOf(0)
  908.      * </pre>
  909.      *
  910.      * @param bool  the to convert
  911.      * @param trueValue  the value to return if {@code true}, may be {@code null}
  912.      * @param falseValue  the value to return if {@code false}, may be {@code null}
  913.      * @return the appropriate value
  914.      */
  915.     public static Integer toIntegerObject(final boolean bool, final Integer trueValue, final Integer falseValue) {
  916.         return bool ? trueValue : falseValue;
  917.     }

  918.     /**
  919.      * Converts a Boolean to an Integer using the convention that
  920.      * {@code zero} is {@code false}.
  921.      *
  922.      * <p>{@code null} will be converted to {@code null}.</p>
  923.      *
  924.      * <pre>
  925.      *   BooleanUtils.toIntegerObject(Boolean.TRUE)  = Integer.valueOf(1)
  926.      *   BooleanUtils.toIntegerObject(Boolean.FALSE) = Integer.valueOf(0)
  927.      * </pre>
  928.      *
  929.      * @param bool  the Boolean to convert
  930.      * @return one if Boolean.TRUE, zero if Boolean.FALSE, {@code null} if {@code null}
  931.      */
  932.     public static Integer toIntegerObject(final Boolean bool) {
  933.         if (bool == null) {
  934.             return null;
  935.         }
  936.         return bool.booleanValue() ? NumberUtils.INTEGER_ONE : NumberUtils.INTEGER_ZERO;
  937.     }

  938.     /**
  939.      * Converts a Boolean to an Integer specifying the conversion values.
  940.      *
  941.      * <pre>
  942.      *   BooleanUtils.toIntegerObject(Boolean.TRUE, Integer.valueOf(1), Integer.valueOf(0), Integer.valueOf(2))  = Integer.valueOf(1)
  943.      *   BooleanUtils.toIntegerObject(Boolean.FALSE, Integer.valueOf(1), Integer.valueOf(0), Integer.valueOf(2)) = Integer.valueOf(0)
  944.      *   BooleanUtils.toIntegerObject(null, Integer.valueOf(1), Integer.valueOf(0), Integer.valueOf(2))          = Integer.valueOf(2)
  945.      * </pre>
  946.      *
  947.      * @param bool  the Boolean to convert
  948.      * @param trueValue  the value to return if {@code true}, may be {@code null}
  949.      * @param falseValue  the value to return if {@code false}, may be {@code null}
  950.      * @param nullValue  the value to return if {@code null}, may be {@code null}
  951.      * @return the appropriate value
  952.      */
  953.     public static Integer toIntegerObject(final Boolean bool, final Integer trueValue, final Integer falseValue, final Integer nullValue) {
  954.         if (bool == null) {
  955.             return nullValue;
  956.         }
  957.         return bool.booleanValue() ? trueValue : falseValue;
  958.     }

  959.     /**
  960.      * Converts a boolean to a String returning one of the input Strings.
  961.      *
  962.      * <pre>
  963.      *   BooleanUtils.toString(true, "true", "false")   = "true"
  964.      *   BooleanUtils.toString(false, "true", "false")  = "false"
  965.      * </pre>
  966.      *
  967.      * @param bool  the Boolean to check
  968.      * @param trueString  the String to return if {@code true}, may be {@code null}
  969.      * @param falseString  the String to return if {@code false}, may be {@code null}
  970.      * @return one of the two input Strings
  971.      */
  972.     public static String toString(final boolean bool, final String trueString, final String falseString) {
  973.         return bool ? trueString : falseString;
  974.     }

  975.     /**
  976.      * Converts a Boolean to a String returning one of the input Strings.
  977.      *
  978.      * <pre>
  979.      *   BooleanUtils.toString(Boolean.TRUE, "true", "false", null)   = "true"
  980.      *   BooleanUtils.toString(Boolean.FALSE, "true", "false", null)  = "false"
  981.      *   BooleanUtils.toString(null, "true", "false", null)           = null;
  982.      * </pre>
  983.      *
  984.      * @param bool  the Boolean to check
  985.      * @param trueString  the String to return if {@code true}, may be {@code null}
  986.      * @param falseString  the String to return if {@code false}, may be {@code null}
  987.      * @param nullString  the String to return if {@code null}, may be {@code null}
  988.      * @return one of the three input Strings
  989.      */
  990.     public static String toString(final Boolean bool, final String trueString, final String falseString, final String nullString) {
  991.         if (bool == null) {
  992.             return nullString;
  993.         }
  994.         return bool.booleanValue() ? trueString : falseString;
  995.     }

  996.     /**
  997.      * Converts a boolean to a String returning {@code 'on'}
  998.      * or {@code 'off'}.
  999.      *
  1000.      * <pre>
  1001.      *   BooleanUtils.toStringOnOff(true)   = "on"
  1002.      *   BooleanUtils.toStringOnOff(false)  = "off"
  1003.      * </pre>
  1004.      *
  1005.      * @param bool  the Boolean to check
  1006.      * @return {@code 'on'}, {@code 'off'}, or {@code null}
  1007.      */
  1008.     public static String toStringOnOff(final boolean bool) {
  1009.         return toString(bool, ON, OFF);
  1010.     }

  1011.     /**
  1012.      * Converts a Boolean to a String returning {@code 'on'},
  1013.      * {@code 'off'}, or {@code null}.
  1014.      *
  1015.      * <pre>
  1016.      *   BooleanUtils.toStringOnOff(Boolean.TRUE)  = "on"
  1017.      *   BooleanUtils.toStringOnOff(Boolean.FALSE) = "off"
  1018.      *   BooleanUtils.toStringOnOff(null)          = null;
  1019.      * </pre>
  1020.      *
  1021.      * @param bool  the Boolean to check
  1022.      * @return {@code 'on'}, {@code 'off'}, or {@code null}
  1023.      */
  1024.     public static String toStringOnOff(final Boolean bool) {
  1025.         return toString(bool, ON, OFF, null);
  1026.     }

  1027.     /**
  1028.      * Converts a boolean to a String returning {@code 'true'}
  1029.      * or {@code 'false'}.
  1030.      *
  1031.      * <pre>
  1032.      *   BooleanUtils.toStringTrueFalse(true)   = "true"
  1033.      *   BooleanUtils.toStringTrueFalse(false)  = "false"
  1034.      * </pre>
  1035.      *
  1036.      * @param bool  the Boolean to check
  1037.      * @return {@code 'true'}, {@code 'false'}, or {@code null}
  1038.      */
  1039.     public static String toStringTrueFalse(final boolean bool) {
  1040.         return toString(bool, TRUE, FALSE);
  1041.     }

  1042.     /**
  1043.      * Converts a Boolean to a String returning {@code 'true'},
  1044.      * {@code 'false'}, or {@code null}.
  1045.      *
  1046.      * <pre>
  1047.      *   BooleanUtils.toStringTrueFalse(Boolean.TRUE)  = "true"
  1048.      *   BooleanUtils.toStringTrueFalse(Boolean.FALSE) = "false"
  1049.      *   BooleanUtils.toStringTrueFalse(null)          = null;
  1050.      * </pre>
  1051.      *
  1052.      * @param bool  the Boolean to check
  1053.      * @return {@code 'true'}, {@code 'false'}, or {@code null}
  1054.      */
  1055.     public static String toStringTrueFalse(final Boolean bool) {
  1056.         return toString(bool, TRUE, FALSE, null);
  1057.     }

  1058.     /**
  1059.      * Converts a boolean to a String returning {@code 'yes'}
  1060.      * or {@code 'no'}.
  1061.      *
  1062.      * <pre>
  1063.      *   BooleanUtils.toStringYesNo(true)   = "yes"
  1064.      *   BooleanUtils.toStringYesNo(false)  = "no"
  1065.      * </pre>
  1066.      *
  1067.      * @param bool  the Boolean to check
  1068.      * @return {@code 'yes'}, {@code 'no'}, or {@code null}
  1069.      */
  1070.     public static String toStringYesNo(final boolean bool) {
  1071.         return toString(bool, YES, NO);
  1072.     }

  1073.     /**
  1074.      * Converts a Boolean to a String returning {@code 'yes'},
  1075.      * {@code 'no'}, or {@code null}.
  1076.      *
  1077.      * <pre>
  1078.      *   BooleanUtils.toStringYesNo(Boolean.TRUE)  = "yes"
  1079.      *   BooleanUtils.toStringYesNo(Boolean.FALSE) = "no"
  1080.      *   BooleanUtils.toStringYesNo(null)          = null;
  1081.      * </pre>
  1082.      *
  1083.      * @param bool  the Boolean to check
  1084.      * @return {@code 'yes'}, {@code 'no'}, or {@code null}
  1085.      */
  1086.     public static String toStringYesNo(final Boolean bool) {
  1087.         return toString(bool, YES, NO, null);
  1088.     }

  1089.     /**
  1090.      * Returns an unmodifiable list of Booleans {@code [false, true]}.
  1091.      *
  1092.      * @return an unmodifiable list of Booleans {@code [false, true]}.
  1093.      * @since 3.13.0
  1094.      */
  1095.     public static List<Boolean> values() {
  1096.         return BOOLEAN_LIST;
  1097.     }

  1098.     /**
  1099.      * Performs an xor on a set of booleans.
  1100.      * <p>
  1101.      *   This behaves like an XOR gate;
  1102.      *   it returns true if the number of true values is odd,
  1103.      *   and false if the number of true values is zero or even.
  1104.      * </p>
  1105.      *
  1106.      * <pre>
  1107.      *   BooleanUtils.xor(true, true)             = false
  1108.      *   BooleanUtils.xor(false, false)           = false
  1109.      *   BooleanUtils.xor(true, false)            = true
  1110.      *   BooleanUtils.xor(true, false, false)     = true
  1111.      *   BooleanUtils.xor(true, true, true)       = true
  1112.      *   BooleanUtils.xor(true, true, true, true) = false
  1113.      * </pre>
  1114.      *
  1115.      * @param array  an array of {@code boolean}s
  1116.      * @return true if the number of true values in the array is odd; otherwise returns false.
  1117.      * @throws NullPointerException if {@code array} is {@code null}
  1118.      * @throws IllegalArgumentException if {@code array} is empty.
  1119.      */
  1120.     public static boolean xor(final boolean... array) {
  1121.         ObjectUtils.requireNonEmpty(array, "array");
  1122.         // false if the neutral element of the xor operator
  1123.         boolean result = false;
  1124.         for (final boolean element : array) {
  1125.             result ^= element;
  1126.         }

  1127.         return result;
  1128.     }

  1129.     /**
  1130.      * Performs an xor on an array of Booleans.
  1131.      * <pre>
  1132.      *   BooleanUtils.xor(Boolean.TRUE, Boolean.TRUE)                 = Boolean.FALSE
  1133.      *   BooleanUtils.xor(Boolean.FALSE, Boolean.FALSE)               = Boolean.FALSE
  1134.      *   BooleanUtils.xor(Boolean.TRUE, Boolean.FALSE)                = Boolean.TRUE
  1135.      *   BooleanUtils.xor(Boolean.TRUE, Boolean.FALSE, Boolean.FALSE) = Boolean.TRUE
  1136.      *   BooleanUtils.xor(Boolean.FALSE, null)                        = Boolean.FALSE
  1137.      *   BooleanUtils.xor(Boolean.TRUE, null)                         = Boolean.TRUE
  1138.      * </pre>
  1139.      * <p>
  1140.      * Null array elements map to false, like {@code Boolean.parseBoolean(null)} and its callers return false.
  1141.      * </p>
  1142.      *
  1143.      * @param array  an array of {@link Boolean}s
  1144.      * @return the result of the xor operations
  1145.      * @throws NullPointerException if {@code array} is {@code null}
  1146.      * @throws IllegalArgumentException if {@code array} is empty.
  1147.      */
  1148.     public static Boolean xor(final Boolean... array) {
  1149.         ObjectUtils.requireNonEmpty(array, "array");
  1150.         return xor(ArrayUtils.toPrimitive(array)) ? Boolean.TRUE : Boolean.FALSE;
  1151.     }

  1152.     /**
  1153.      * {@link BooleanUtils} instances should NOT be constructed in standard programming.
  1154.      * Instead, the class should be used as {@code BooleanUtils.negate(true);}.
  1155.      *
  1156.      * <p>This constructor is public to permit tools that require a JavaBean instance
  1157.      * to operate.</p>
  1158.      *
  1159.      * @deprecated TODO Make private in 4.0.
  1160.      */
  1161.     @Deprecated
  1162.     public BooleanUtils() {
  1163.         // empty
  1164.     }

  1165. }