MutableByte.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 org.apache.commons.lang3.math.NumberUtils;

  19. /**
  20.  * A mutable {@code byte} wrapper.
  21.  * <p>
  22.  * Note that as MutableByte does not extend Byte, it is not treated by String.format as a Byte parameter.
  23.  * </p>
  24.  *
  25.  * @see Byte
  26.  * @since 2.1
  27.  */
  28. public class MutableByte extends Number implements Comparable<MutableByte>, Mutable<Number> {

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

  35.     /** The mutable value. */
  36.     private byte value;

  37.     /**
  38.      * Constructs a new MutableByte with the default value of zero.
  39.      */
  40.     public MutableByte() {
  41.     }

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

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

  59.     /**
  60.      * Constructs a new MutableByte parsing the given string.
  61.      *
  62.      * @param value  the string to parse, not null
  63.      * @throws NumberFormatException if the string cannot be parsed into a byte
  64.      * @since 2.5
  65.      */
  66.     public MutableByte(final String value) {
  67.         this.value = Byte.parseByte(value);
  68.     }

  69.     /**
  70.      * Adds a value to the value of this instance.
  71.      *
  72.      * @param operand  the value to add, not null
  73.      * @since 2.2
  74.      */
  75.     public void add(final byte operand) {
  76.         this.value += operand;
  77.     }

  78.     /**
  79.      * Adds a value to the value of this instance.
  80.      *
  81.      * @param operand  the value to add, not null
  82.      * @throws NullPointerException if the object is null
  83.      * @since 2.2
  84.      */
  85.     public void add(final Number operand) {
  86.         this.value += operand.byteValue();
  87.     }

  88.     /**
  89.      * Increments this instance's value by {@code operand}; this method returns the value associated with the instance
  90.      * immediately after the addition operation. This method is not thread safe.
  91.      *
  92.      * @param operand the quantity to add, not null
  93.      * @return the value associated with this instance after adding the operand
  94.      * @since 3.5
  95.      */
  96.     public byte addAndGet(final byte operand) {
  97.         this.value += operand;
  98.         return value;
  99.     }

  100.     /**
  101.      * Increments this instance's value by {@code operand}; this method returns the value associated with the instance
  102.      * immediately after the addition operation. This method is not thread safe.
  103.      *
  104.      * @param operand the quantity to add, not null
  105.      * @throws NullPointerException if {@code operand} is null
  106.      * @return the value associated with this instance after adding the operand
  107.      * @since 3.5
  108.      */
  109.     public byte addAndGet(final Number operand) {
  110.         this.value += operand.byteValue();
  111.         return value;
  112.     }

  113.     // shortValue relies on Number implementation
  114.     /**
  115.      * Returns the value of this MutableByte as a byte.
  116.      *
  117.      * @return the numeric value represented by this object after conversion to type byte.
  118.      */
  119.     @Override
  120.     public byte byteValue() {
  121.         return value;
  122.     }

  123.     /**
  124.      * Compares this mutable to another in ascending order.
  125.      *
  126.      * @param other  the other mutable to compare to, not null
  127.      * @return negative if this is less, zero if equal, positive if greater
  128.      */
  129.     @Override
  130.     public int compareTo(final MutableByte other) {
  131.         return NumberUtils.compare(this.value, other.value);
  132.     }

  133.     /**
  134.      * Decrements the value.
  135.      *
  136.      * @since 2.2
  137.      */
  138.     public void decrement() {
  139.         value--;
  140.     }

  141.     /**
  142.      * Decrements this instance's value by 1; this method returns the value associated with the instance
  143.      * immediately after the decrement operation. This method is not thread safe.
  144.      *
  145.      * @return the value associated with the instance after it is decremented
  146.      * @since 3.5
  147.      */
  148.     public byte decrementAndGet() {
  149.         value--;
  150.         return value;
  151.     }

  152.     /**
  153.      * Returns the value of this MutableByte as a double.
  154.      *
  155.      * @return the numeric value represented by this object after conversion to type double.
  156.      */
  157.     @Override
  158.     public double doubleValue() {
  159.         return value;
  160.     }

  161.     /**
  162.      * Compares this object to the specified object. The result is {@code true} if and only if the argument is
  163.      * not {@code null} and is a {@link MutableByte} object that contains the same {@code byte} value
  164.      * as this object.
  165.      *
  166.      * @param obj  the object to compare with, null returns false
  167.      * @return {@code true} if the objects are the same; {@code false} otherwise.
  168.      */
  169.     @Override
  170.     public boolean equals(final Object obj) {
  171.         if (obj instanceof MutableByte) {
  172.             return value == ((MutableByte) obj).byteValue();
  173.         }
  174.         return false;
  175.     }

  176.     /**
  177.      * Returns the value of this MutableByte as a float.
  178.      *
  179.      * @return the numeric value represented by this object after conversion to type float.
  180.      */
  181.     @Override
  182.     public float floatValue() {
  183.         return value;
  184.     }

  185.     /**
  186.      * Increments this instance's value by {@code operand}; this method returns the value associated with the instance
  187.      * immediately prior to the addition operation. This method is not thread safe.
  188.      *
  189.      * @param operand the quantity to add, not null
  190.      * @return the value associated with this instance immediately before the operand was added
  191.      * @since 3.5
  192.      */
  193.     public byte getAndAdd(final byte operand) {
  194.         final byte last = value;
  195.         this.value += operand;
  196.         return last;
  197.     }

  198.     /**
  199.      * Increments this instance's value by {@code operand}; this method returns the value associated with the instance
  200.      * immediately prior to the addition operation. This method is not thread safe.
  201.      *
  202.      * @param operand the quantity to add, not null
  203.      * @throws NullPointerException if {@code operand} is null
  204.      * @return the value associated with this instance immediately before the operand was added
  205.      * @since 3.5
  206.      */
  207.     public byte getAndAdd(final Number operand) {
  208.         final byte last = value;
  209.         this.value += operand.byteValue();
  210.         return last;
  211.     }

  212.     /**
  213.      * Decrements this instance's value by 1; this method returns the value associated with the instance
  214.      * immediately prior to the decrement operation. This method is not thread safe.
  215.      *
  216.      * @return the value associated with the instance before it was decremented
  217.      * @since 3.5
  218.      */
  219.     public byte getAndDecrement() {
  220.         final byte last = value;
  221.         value--;
  222.         return last;
  223.     }

  224.     /**
  225.      * Increments this instance's value by 1; this method returns the value associated with the instance
  226.      * immediately prior to the increment operation. This method is not thread safe.
  227.      *
  228.      * @return the value associated with the instance before it was incremented
  229.      * @since 3.5
  230.      */
  231.     public byte getAndIncrement() {
  232.         final byte last = value;
  233.         value++;
  234.         return last;
  235.     }

  236.     /**
  237.      * Gets the value as a Byte instance.
  238.      *
  239.      * @return the value as a Byte, never null
  240.      */
  241.     @Override
  242.     public Byte getValue() {
  243.         return Byte.valueOf(this.value);
  244.     }

  245.     /**
  246.      * Returns a suitable hash code for this mutable.
  247.      *
  248.      * @return a suitable hash code
  249.      */
  250.     @Override
  251.     public int hashCode() {
  252.         return value;
  253.     }

  254.     /**
  255.      * Increments the value.
  256.      *
  257.      * @since 2.2
  258.      */
  259.     public void increment() {
  260.         value++;
  261.     }

  262.     /**
  263.      * Increments this instance's value by 1; this method returns the value associated with the instance
  264.      * immediately after the increment operation. This method is not thread safe.
  265.      *
  266.      * @return the value associated with the instance after it is incremented
  267.      * @since 3.5
  268.      */
  269.     public byte incrementAndGet() {
  270.         value++;
  271.         return value;
  272.     }

  273.     /**
  274.      * Returns the value of this MutableByte as an int.
  275.      *
  276.      * @return the numeric value represented by this object after conversion to type int.
  277.      */
  278.     @Override
  279.     public int intValue() {
  280.         return value;
  281.     }

  282.     /**
  283.      * Returns the value of this MutableByte as a long.
  284.      *
  285.      * @return the numeric value represented by this object after conversion to type long.
  286.      */
  287.     @Override
  288.     public long longValue() {
  289.         return value;
  290.     }

  291.     /**
  292.      * Sets the value.
  293.      *
  294.      * @param value  the value to set
  295.      */
  296.     public void setValue(final byte value) {
  297.         this.value = value;
  298.     }

  299.     /**
  300.      * Sets the value from any Number instance.
  301.      *
  302.      * @param value  the value to set, not null
  303.      * @throws NullPointerException if the object is null
  304.      */
  305.     @Override
  306.     public void setValue(final Number value) {
  307.         this.value = value.byteValue();
  308.     }

  309.     /**
  310.      * Subtracts a value from the value of this instance.
  311.      *
  312.      * @param operand  the value to subtract, not null
  313.      * @since 2.2
  314.      */
  315.     public void subtract(final byte operand) {
  316.         this.value -= operand;
  317.     }

  318.     /**
  319.      * Subtracts a value from the value of this instance.
  320.      *
  321.      * @param operand  the value to subtract, not null
  322.      * @throws NullPointerException if the object is null
  323.      * @since 2.2
  324.      */
  325.     public void subtract(final Number operand) {
  326.         this.value -= operand.byteValue();
  327.     }

  328.     /**
  329.      * Gets this mutable as an instance of Byte.
  330.      *
  331.      * @return a Byte instance containing the value from this mutable
  332.      */
  333.     public Byte toByte() {
  334.         return Byte.valueOf(byteValue());
  335.     }

  336.     /**
  337.      * Returns the String value of this mutable.
  338.      *
  339.      * @return the mutable value as a string
  340.      */
  341.     @Override
  342.     public String toString() {
  343.         return String.valueOf(value);
  344.     }

  345. }