Package net.andreinc.mockneat.types
Class Pair<T1,T2>
- java.lang.Object
-
- net.andreinc.mockneat.types.Pair<T1,T2>
-
- Type Parameters:
T1- The type of the first memberT2- The type of the second member
public class Pair<T1,T2> extends java.lang.ObjectA simple Pair (or Tuple implementation).
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description T1getFirst()T2getSecond()static <T1,T2>
Pair<T1,T2>of(T1 first, T2 second)
-