Class Triple.TripleAdapter<L,M,R>

java.lang.Object
org.apache.commons.lang3.tuple.Triple<L,M,R>
org.apache.commons.lang3.tuple.Triple.TripleAdapter<L,M,R>
All Implemented Interfaces:
Serializable, Comparable<Triple<L,M,R>>
Enclosing class:
Triple<L,M,R>

private static final class Triple.TripleAdapter<L,M,R> extends Triple<L,M,R>
  • Field Details

  • Constructor Details

    • TripleAdapter

      private TripleAdapter()
  • Method Details

    • getLeft

      public L getLeft()
      Description copied from class: Triple

      Gets the left element from this triple.

      Specified by:
      getLeft in class Triple<L,M,R>
      Returns:
      the left element, may be null
    • getMiddle

      public M getMiddle()
      Description copied from class: Triple

      Gets the middle element from this triple.

      Specified by:
      getMiddle in class Triple<L,M,R>
      Returns:
      the middle element, may be null
    • getRight

      public R getRight()
      Description copied from class: Triple

      Gets the right element from this triple.

      Specified by:
      getRight in class Triple<L,M,R>
      Returns:
      the right element, may be null