public class Triple<T1,T2,T3>
extends Object
-
-
Constructor Summary
Constructors
-
Method Summary
boolean
int
static <T1,
T2,
T3>
Triple<T1,T2,T3>
of(T1 first,
T2 second,
T3 third)
-
Field Details
-
first
@Nullable
public final T1 first
-
second
@Nullable
public final T2 second
-
third
@Nullable
public final T3 third
-
Constructor Details
-
Triple
public Triple(@Nullable
T1 first,
@Nullable
T2 second,
@Nullable
T3 third)
-
Method Details
-
of
public static <T1,
T2,
T3> Triple<T1,T2,T3> of(@Nullable
T1 first,
@Nullable
T2 second,
@Nullable
T3 third)
-
-
-