MutableBoolean.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.mutable;

  18. import java.io.Serializable;

  19. import org.apache.commons.lang3.BooleanUtils;

  20. /**
  21.  * A mutable {@code boolean} wrapper.
  22.  * <p>
  23.  * Note that as MutableBoolean does not extend Boolean, it is not treated by String.format as a Boolean parameter.
  24.  * </p>
  25.  *
  26.  * @see Boolean
  27.  * @since 2.2
  28.  */
  29. public class MutableBoolean implements Mutable<Boolean>, Serializable, Comparable<MutableBoolean> {

  30.     /**
  31.      * Required for serialization support.
  32.      *
  33.      * @see java.io.Serializable
  34.      */
  35.     private static final long serialVersionUID = -4830728138360036487L;

  36.     /** The mutable value. */
  37.     private boolean value;

  38.     /**
  39.      * Constructs a new MutableBoolean with the default value of false.
  40.      */
  41.     public MutableBoolean() {
  42.     }

  43.     /**
  44.      * Constructs a new MutableBoolean with the specified value.
  45.      *
  46.      * @param value  the initial value to store
  47.      */
  48.     public MutableBoolean(final boolean value) {
  49.         this.value = value;
  50.     }

  51.     /**
  52.      * Constructs a new MutableBoolean with the specified value.
  53.      *
  54.      * @param value  the initial value to store, not null
  55.      * @throws NullPointerException if the object is null
  56.      */
  57.     public MutableBoolean(final Boolean value) {
  58.         this.value = value.booleanValue();
  59.     }

  60.     /**
  61.      * Returns the value of this MutableBoolean as a boolean.
  62.      *
  63.      * @return the boolean value represented by this object.
  64.      */
  65.     public boolean booleanValue() {
  66.         return value;
  67.     }

  68.     /**
  69.      * Compares this mutable to another in ascending order.
  70.      *
  71.      * @param other  the other mutable to compare to, not null
  72.      * @return negative if this is less, zero if equal, positive if greater
  73.      *  where false is less than true
  74.      */
  75.     @Override
  76.     public int compareTo(final MutableBoolean other) {
  77.         return BooleanUtils.compare(this.value, other.value);
  78.     }

  79.     /**
  80.      * Compares this object to the specified object. The result is {@code true} if and only if the argument is
  81.      * not {@code null} and is an {@link MutableBoolean} object that contains the same
  82.      * {@code boolean} value as this object.
  83.      *
  84.      * @param obj  the object to compare with, null returns false
  85.      * @return {@code true} if the objects are the same; {@code false} otherwise.
  86.      */
  87.     @Override
  88.     public boolean equals(final Object obj) {
  89.         if (obj instanceof MutableBoolean) {
  90.             return value == ((MutableBoolean) obj).booleanValue();
  91.         }
  92.         return false;
  93.     }

  94.     /**
  95.      * Gets the value as a Boolean instance.
  96.      *
  97.      * @return the value as a Boolean, never null
  98.      */
  99.     @Override
  100.     public Boolean getValue() {
  101.         return Boolean.valueOf(this.value);
  102.     }

  103.     /**
  104.      * Returns a suitable hash code for this mutable.
  105.      *
  106.      * @return the hash code returned by {@code Boolean.TRUE} or {@code Boolean.FALSE}
  107.      */
  108.     @Override
  109.     public int hashCode() {
  110.         return value ? Boolean.TRUE.hashCode() : Boolean.FALSE.hashCode();
  111.     }

  112.     /**
  113.      * Checks if the current value is {@code false}.
  114.      *
  115.      * @return {@code true} if the current value is {@code false}
  116.      * @since 2.5
  117.      */
  118.     public boolean isFalse() {
  119.         return !value;
  120.     }

  121.     /**
  122.      * Checks if the current value is {@code true}.
  123.      *
  124.      * @return {@code true} if the current value is {@code true}
  125.      * @since 2.5
  126.      */
  127.     public boolean isTrue() {
  128.         return value;
  129.     }

  130.     /**
  131.      * Sets the value to false.
  132.      *
  133.      * @since 3.3
  134.      */
  135.     public void setFalse() {
  136.         this.value = false;
  137.     }

  138.     /**
  139.      * Sets the value to true.
  140.      *
  141.      * @since 3.3
  142.      */
  143.     public void setTrue() {
  144.         this.value = true;
  145.     }

  146.     /**
  147.      * Sets the value.
  148.      *
  149.      * @param value  the value to set
  150.      */
  151.     public void setValue(final boolean value) {
  152.         this.value = value;
  153.     }

  154.     /**
  155.      * Sets the value from any Boolean instance.
  156.      *
  157.      * @param value  the value to set, not null
  158.      * @throws NullPointerException if the object is null
  159.      */
  160.     @Override
  161.     public void setValue(final Boolean value) {
  162.         this.value = value.booleanValue();
  163.     }

  164.     /**
  165.      * Gets this mutable as an instance of Boolean.
  166.      *
  167.      * @return a Boolean instance containing the value from this mutable, never null
  168.      * @since 2.5
  169.      */
  170.     public Boolean toBoolean() {
  171.         return Boolean.valueOf(booleanValue());
  172.     }

  173.     /**
  174.      * Returns the String value of this mutable.
  175.      *
  176.      * @return the mutable value as a string
  177.      */
  178.     @Override
  179.     public String toString() {
  180.         return String.valueOf(value);
  181.     }

  182. }