Home | History | Annotate | Download | only in util

Lines Matching defs:second

25     public final B second;
27 public Pair(A first, B second) {
29 this.second = second;
53 if (this.second == null) {
54 if (pair.second != null) {
57 } else if (!this.second.equals(pair.second)) {
68 return (first == null ? 0 : first.hashCode()) ^ (second == null ? 0 : second.hashCode());
73 * @param b the second object in the Pair