Home | History | Annotate | Download | only in util

Lines Matching defs:second

28     public final S second;
34 * @param second the second object in the pair
36 public Pair(F first, S second) {
38 this.second = second;
55 return Objects.equals(p.first, first) && Objects.equals(p.second, second);
65 return (first == null ? 0 : first.hashCode()) ^ (second == null ? 0 : second.hashCode());
70 return "Pair{" + String.valueOf(first) + " " + String.valueOf(second) + "}";
76 * @param b the second object in the pair