F - the generic type of the 1st. value in this tuple.S - the generic type of the 2nd. value in this tuple.T - the generic type of the 3rd. value in this tuple.public class Triple<F,S,T> extends Pair<F,S>
| Modifier and Type | Method and Description |
|---|---|
static <F,S,T> Triple<F,S,T> |
of(F first,
S second,
T third)
Creates a new
Triple. |
public final T third
@Nonnull public static <F,S,T> Triple<F,S,T> of(F first, S second, T third)
Triple.F - the generic type of the 1st. value in this tuple.S - the generic type of the 2nd. value in this tuple.T - the generic type of the 3rd. value in this tuple.first - the 1st. value in this tuple.second - the 2nd. value in this tuple.third - the 3rd. value in this tuple.Triple.Copyright © 2014–2019 AssertJ. All rights reserved.