MutablePair.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.tuple;

  18. import java.util.Map;
  19. import java.util.Objects;

  20. /**
  21.  * A mutable pair consisting of two {@link Object} elements.
  22.  *
  23.  * <p>Not #ThreadSafe#</p>
  24.  *
  25.  * @param <L> the left element type
  26.  * @param <R> the right element type
  27.  *
  28.  * @since 3.0
  29.  */
  30. public class MutablePair<L, R> extends Pair<L, R> {

  31.     /**
  32.      * An empty array.
  33.      * <p>
  34.      * Consider using {@link #emptyArray()} to avoid generics warnings.
  35.      * </p>
  36.      *
  37.      * @since 3.10.
  38.      */
  39.     public static final MutablePair<?, ?>[] EMPTY_ARRAY = {};

  40.     /** Serialization version */
  41.     private static final long serialVersionUID = 4954918890077093841L;

  42.     /**
  43.      * Returns the empty array singleton that can be assigned without compiler warning.
  44.      *
  45.      * @param <L> the left element type
  46.      * @param <R> the right element type
  47.      * @return the empty array singleton that can be assigned without compiler warning.
  48.      *
  49.      * @since 3.10.
  50.      */
  51.     @SuppressWarnings("unchecked")
  52.     public static <L, R> MutablePair<L, R>[] emptyArray() {
  53.         return (MutablePair<L, R>[]) EMPTY_ARRAY;
  54.     }

  55.     /**
  56.      * Creates a mutable pair of two objects inferring the generic types.
  57.      *
  58.      * <p>This factory allows the pair to be created using inference to
  59.      * obtain the generic types.</p>
  60.      *
  61.      * @param <L> the left element type
  62.      * @param <R> the right element type
  63.      * @param left  the left element, may be null
  64.      * @param right  the right element, may be null
  65.      * @return a pair formed from the two parameters, not null
  66.      */
  67.     public static <L, R> MutablePair<L, R> of(final L left, final R right) {
  68.         return new MutablePair<>(left, right);
  69.     }

  70.     /**
  71.      * Creates a mutable pair from a map entry.
  72.      *
  73.      * <p>This factory allows the pair to be created using inference to
  74.      * obtain the generic types.</p>
  75.      *
  76.      * @param <L> the left element type
  77.      * @param <R> the right element type
  78.      * @param pair the existing map entry.
  79.      * @return a pair formed from the map entry
  80.      */
  81.     public static <L, R> MutablePair<L, R> of(final Map.Entry<L, R> pair) {
  82.         final L left;
  83.         final R right;
  84.         if (pair != null) {
  85.             left = pair.getKey();
  86.             right = pair.getValue();
  87.         } else {
  88.             left = null;
  89.             right = null;
  90.         }
  91.         return new MutablePair<>(left, right);
  92.     }

  93.     /**
  94.      * Creates a mutable pair of two non-null objects inferring the generic types.
  95.      *
  96.      * <p>This factory allows the pair to be created using inference to
  97.      * obtain the generic types.</p>
  98.      *
  99.      * @param <L> the left element type
  100.      * @param <R> the right element type
  101.      * @param left  the left element, may not be null
  102.      * @param right  the right element, may not be null
  103.      * @return a pair formed from the two parameters, not null
  104.      * @throws NullPointerException if any input is null
  105.      * @since 3.13.0
  106.      */
  107.     public static <L, R> MutablePair<L, R> ofNonNull(final L left, final R right) {
  108.         return of(Objects.requireNonNull(left, "left"), Objects.requireNonNull(right, "right"));
  109.     }

  110.     /** Left object */
  111.     public L left;

  112.     /** Right object */
  113.     public R right;

  114.     /**
  115.      * Create a new pair instance of two nulls.
  116.      */
  117.     public MutablePair() {
  118.     }

  119.     /**
  120.      * Create a new pair instance.
  121.      *
  122.      * @param left  the left value, may be null
  123.      * @param right  the right value, may be null
  124.      */
  125.     public MutablePair(final L left, final R right) {
  126.         this.left = left;
  127.         this.right = right;
  128.     }

  129.     /**
  130.      * {@inheritDoc}
  131.      */
  132.     @Override
  133.     public L getLeft() {
  134.         return left;
  135.     }

  136.     /**
  137.      * {@inheritDoc}
  138.      */
  139.     @Override
  140.     public R getRight() {
  141.         return right;
  142.     }

  143.     /**
  144.      * Sets the left element of the pair.
  145.      *
  146.      * @param left  the new value of the left element, may be null
  147.      */
  148.     public void setLeft(final L left) {
  149.         this.left = left;
  150.     }

  151.     /**
  152.      * Sets the right element of the pair.
  153.      *
  154.      * @param right  the new value of the right element, may be null
  155.      */
  156.     public void setRight(final R right) {
  157.         this.right = right;
  158.     }

  159.     /**
  160.      * Sets the {@code Map.Entry} value.
  161.      * This sets the right element of the pair.
  162.      *
  163.      * @param value  the right value to set, not null
  164.      * @return the old value for the right element
  165.      */
  166.     @Override
  167.     public R setValue(final R value) {
  168.         final R result = getRight();
  169.         setRight(value);
  170.         return result;
  171.     }

  172. }