Obtains an immutable triple of three objects inferring the generic types. @param The left element type. @param The middle element type. @param The right element type. @param left the left element, may be null. @param middle the middle element, may be null. @param right the right eleme
(final L left, final M middle, final R right)
| 77 | * @return an immutable triple formed from the three parameters, not null. |
| 78 | */ |
| 79 | public static <L, M, R> Triple<L, M, R> of(final L left, final M middle, final R right) { |
| 80 | return ImmutableTriple.of(left, middle, right); |
| 81 | } |
| 82 | |
| 83 | /** |
| 84 | * Obtains an immutable triple of three non-null objects inferring the generic types. |