ImmutableTriple.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.Objects;

  19. /**
  20.  * An immutable triple consisting of three {@link Object} elements.
  21.  *
  22.  * <p>Although the implementation is immutable, there is no restriction on the objects
  23.  * that may be stored. If mutable objects are stored in the triple, then the triple
  24.  * itself effectively becomes mutable.</p>
  25.  *
  26.  * <p>#ThreadSafe# if all three objects are thread-safe</p>
  27.  *
  28.  * @param <L> the left element type
  29.  * @param <M> the middle element type
  30.  * @param <R> the right element type
  31.  *
  32.  * @since 3.2
  33.  */
  34. public class ImmutableTriple<L, M, R> extends Triple<L, M, R> {

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

  44.     /**
  45.      * An immutable triple of nulls.
  46.      */
  47.     // This is not defined with generics to avoid warnings in call sites.
  48.     @SuppressWarnings("rawtypes")
  49.     private static final ImmutableTriple NULL = new ImmutableTriple<>(null, null, null);

  50.     /** Serialization version */
  51.     private static final long serialVersionUID = 1L;

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

  66.     /**
  67.      * Returns an immutable triple of nulls.
  68.      *
  69.      * @param <L> the left element of this triple. Value is {@code null}.
  70.      * @param <M> the middle element of this triple. Value is {@code null}.
  71.      * @param <R> the right element of this triple. Value is {@code null}.
  72.      * @return an immutable triple of nulls.
  73.      * @since 3.6
  74.      */
  75.     @SuppressWarnings("unchecked")
  76.     public static <L, M, R> ImmutableTriple<L, M, R> nullTriple() {
  77.         return NULL;
  78.     }

  79.     /**
  80.      * Obtains an immutable triple of three objects inferring the generic types.
  81.      *
  82.      * <p>This factory allows the triple to be created using inference to
  83.      * obtain the generic types.</p>
  84.      *
  85.      * @param <L> the left element type
  86.      * @param <M> the middle element type
  87.      * @param <R> the right element type
  88.      * @param left  the left element, may be null
  89.      * @param middle  the middle element, may be null
  90.      * @param right  the right element, may be null
  91.      * @return a triple formed from the three parameters, not null
  92.      */
  93.     public static <L, M, R> ImmutableTriple<L, M, R> of(final L left, final M middle, final R right) {
  94.         return left != null | middle != null || right != null ? new ImmutableTriple<>(left, middle, right) : nullTriple();
  95.     }

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

  115.     /** Left object */
  116.     public final L left;
  117.     /** Middle object */
  118.     public final M middle;

  119.     /** Right object */
  120.     public final R right;

  121.     /**
  122.      * Create a new triple instance.
  123.      *
  124.      * @param left  the left value, may be null
  125.      * @param middle the middle value, may be null
  126.      * @param right  the right value, may be null
  127.      */
  128.     public ImmutableTriple(final L left, final M middle, final R right) {
  129.         this.left = left;
  130.         this.middle = middle;
  131.         this.right = right;
  132.     }

  133.     /**
  134.      * {@inheritDoc}
  135.      */
  136.     @Override
  137.     public L getLeft() {
  138.         return left;
  139.     }

  140.     /**
  141.      * {@inheritDoc}
  142.      */
  143.     @Override
  144.     public M getMiddle() {
  145.         return middle;
  146.     }

  147.     /**
  148.      * {@inheritDoc}
  149.      */
  150.     @Override
  151.     public R getRight() {
  152.         return right;
  153.     }
  154. }