Pair.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.io.Serializable;
  19. import java.util.Map;
  20. import java.util.Objects;

  21. import org.apache.commons.lang3.builder.CompareToBuilder;
  22. import org.apache.commons.lang3.function.FailableBiConsumer;
  23. import org.apache.commons.lang3.function.FailableBiFunction;

  24. /**
  25.  * A pair consisting of two elements.
  26.  *
  27.  * <p>This class is an abstract implementation defining the basic API.
  28.  * It refers to the elements as 'left' and 'right'. It also implements the
  29.  * {@code Map.Entry} interface where the key is 'left' and the value is 'right'.</p>
  30.  *
  31.  * <p>Subclass implementations may be mutable or immutable.
  32.  * However, there is no restriction on the type of the stored objects that may be stored.
  33.  * If mutable objects are stored in the pair, then the pair itself effectively becomes mutable.</p>
  34.  *
  35.  * @param <L> the left element type
  36.  * @param <R> the right element type
  37.  *
  38.  * @since 3.0
  39.  */
  40. public abstract class Pair<L, R> implements Map.Entry<L, R>, Comparable<Pair<L, R>>, Serializable {

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

  43.     /**
  44.      * An empty array.
  45.      * <p>
  46.      * Consider using {@link #emptyArray()} to avoid generics warnings.
  47.      * </p>
  48.      *
  49.      * @since 3.10.
  50.      */
  51.     public static final Pair<?, ?>[] EMPTY_ARRAY = {};

  52.     /**
  53.      * Returns the empty array singleton that can be assigned without compiler warning.
  54.      *
  55.      * @param <L> the left element type
  56.      * @param <R> the right element type
  57.      * @return the empty array singleton that can be assigned without compiler warning.
  58.      *
  59.      * @since 3.10.
  60.      */
  61.     @SuppressWarnings("unchecked")
  62.     public static <L, R> Pair<L, R>[] emptyArray() {
  63.         return (Pair<L, R>[]) EMPTY_ARRAY;
  64.     }

  65.     /**
  66.      * Creates an immutable pair of two objects inferring the generic types.
  67.      *
  68.      * <p>This factory allows the pair to be created using inference to
  69.      * obtain the generic types.</p>
  70.      *
  71.      * @param <L> the left element type
  72.      * @param <R> the right element type
  73.      * @param left  the left element, may be null
  74.      * @param right  the right element, may be null
  75.      * @return a pair formed from the two parameters, not null
  76.      */
  77.     public static <L, R> Pair<L, R> of(final L left, final R right) {
  78.         return ImmutablePair.of(left, right);
  79.     }

  80.     /**
  81.      * Creates an immutable pair from a map entry.
  82.      *
  83.      * <p>This factory allows the pair to be created using inference to
  84.      * obtain the generic types.</p>
  85.      *
  86.      * @param <L> the left element type
  87.      * @param <R> the right element type
  88.      * @param pair the map entry.
  89.      * @return a pair formed from the map entry
  90.      * @since 3.10
  91.      */
  92.     public static <L, R> Pair<L, R> of(final Map.Entry<L, R> pair) {
  93.         return ImmutablePair.of(pair);
  94.     }

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

  112.     /**
  113.      * Constructs a new instance.
  114.      */
  115.     public Pair() {
  116.         // empty
  117.     }

  118.     /**
  119.      * Accepts this key and value as arguments to the given consumer.
  120.      *
  121.      * @param <E> The kind of thrown exception or error.
  122.      * @param consumer the consumer to call.
  123.      * @throws E Thrown when the consumer fails.
  124.      * @since 3.13.0
  125.      */
  126.     public <E extends Throwable> void accept(final FailableBiConsumer<L, R, E> consumer) throws E {
  127.         consumer.accept(getKey(), getValue());
  128.     }

  129.     /**
  130.      * Applies this key and value as arguments to the given function.
  131.      *
  132.      * @param <V> The function return type.
  133.      * @param <E> The kind of thrown exception or error.
  134.      * @param function the consumer to call.
  135.      * @return the function's return value.
  136.      * @throws E Thrown when the consumer fails.
  137.      * @since 3.13.0
  138.      */
  139.     public <V, E extends Throwable> V apply(final FailableBiFunction<L, R, V, E> function) throws E {
  140.         return function.apply(getKey(), getValue());
  141.     }

  142.     /**
  143.      * Compares the pair based on the left element followed by the right element.
  144.      * The types must be {@link Comparable}.
  145.      *
  146.      * @param other  the other pair, not null
  147.      * @return negative if this is less, zero if equal, positive if greater
  148.      */
  149.     @Override
  150.     public int compareTo(final Pair<L, R> other) {
  151.       return new CompareToBuilder().append(getLeft(), other.getLeft())
  152.               .append(getRight(), other.getRight()).toComparison();
  153.     }

  154.     /**
  155.      * Compares this pair to another based on the two elements.
  156.      *
  157.      * @param obj  the object to compare to, null returns false
  158.      * @return true if the elements of the pair are equal
  159.      */
  160.     @Override
  161.     public boolean equals(final Object obj) {
  162.         if (obj == this) {
  163.             return true;
  164.         }
  165.         if (obj instanceof Map.Entry<?, ?>) {
  166.             final Map.Entry<?, ?> other = (Map.Entry<?, ?>) obj;
  167.             return Objects.equals(getKey(), other.getKey())
  168.                     && Objects.equals(getValue(), other.getValue());
  169.         }
  170.         return false;
  171.     }

  172.     /**
  173.      * Gets the key from this pair.
  174.      *
  175.      * <p>This method implements the {@code Map.Entry} interface returning the
  176.      * left element as the key.</p>
  177.      *
  178.      * @return the left element as the key, may be null
  179.      */
  180.     @Override
  181.     public final L getKey() {
  182.         return getLeft();
  183.     }

  184.     /**
  185.      * Gets the left element from this pair.
  186.      *
  187.      * <p>When treated as a key-value pair, this is the key.</p>
  188.      *
  189.      * @return the left element, may be null
  190.      */
  191.     public abstract L getLeft();

  192.     /**
  193.      * Gets the right element from this pair.
  194.      *
  195.      * <p>When treated as a key-value pair, this is the value.</p>
  196.      *
  197.      * @return the right element, may be null
  198.      */
  199.     public abstract R getRight();

  200.     /**
  201.      * Gets the value from this pair.
  202.      *
  203.      * <p>This method implements the {@code Map.Entry} interface returning the
  204.      * right element as the value.</p>
  205.      *
  206.      * @return the right element as the value, may be null
  207.      */
  208.     @Override
  209.     public R getValue() {
  210.         return getRight();
  211.     }

  212.     /**
  213.      * Returns a suitable hash code.
  214.      * The hash code follows the definition in {@code Map.Entry}.
  215.      *
  216.      * @return the hash code
  217.      */
  218.     @Override
  219.     public int hashCode() {
  220.         // see Map.Entry API specification
  221.         return Objects.hashCode(getKey()) ^ Objects.hashCode(getValue());
  222.     }

  223.     /**
  224.      * Returns a String representation of this pair using the format {@code ($left,$right)}.
  225.      *
  226.      * @return a string describing this object, not null
  227.      */
  228.     @Override
  229.     public String toString() {
  230.         return "(" + getLeft() + ',' + getRight() + ')';
  231.     }

  232.     /**
  233.      * Formats the receiver using the given format.
  234.      *
  235.      * <p>This uses {@link java.util.Formattable} to perform the formatting. Two variables may
  236.      * be used to embed the left and right elements. Use {@code %1$s} for the left
  237.      * element (key) and {@code %2$s} for the right element (value).
  238.      * The default format used by {@code toString()} is {@code (%1$s,%2$s)}.</p>
  239.      *
  240.      * @param format  the format string, optionally containing {@code %1$s} and {@code %2$s}, not null
  241.      * @return the formatted string, not null
  242.      */
  243.     public String toString(final String format) {
  244.         return String.format(format, getLeft(), getRight());
  245.     }

  246. }