Home | History | Annotate | Download | only in util

Lines Matching defs:Pair

18  * Pair of typed values.
25 public class Pair<F, S> {
28 private Pair(F first, S second) {
33 * Gets the pair consisting of the two provided values.
38 public static <F, S> Pair<F, S> of(F first, S second) {
39 return new Pair<F, S>(first, second);
42 * Gets the first value from this pair.
50 * Gets the second value from this pair.
59 return "Pair[" + mFirst + ", " + mSecond + "]";
81 Pair other = (Pair) obj;