Home | History | Annotate | Download | only in util

Lines Matching refs:first

27  * @param <S> The type of the first value
35 private Pair(S first, T second) {
36 this.mFirst = first;
41 * Return the first item in the pair
43 * @return the first item in the pair
61 * @param first the first item to store in the pair
63 * @param <S> the type of the first item
67 public static <S,T> Pair<S,T> of(S first, T second) {
68 return new Pair<S,T>(first,second);
73 return "Pair [first=" + mFirst + ", second=" + mSecond + "]";