Exemplo n.º 1
0
 public boolean equals(Object obj) {
   if (this == obj) return true;
   if (obj == null) return false;
   if (getClass() != obj.getClass()) return false;
   @SuppressWarnings("rawtypes")
   Tuple other = (Tuple) obj;
   if (first == null) {
     if (other.first != null) return false;
   } else if (!first.equals(other.first)) return false;
   return true;
 }
Exemplo n.º 2
0
 @Override
 public int hashCode() {
   return 17 * ((first != null) ? first.hashCode() : 0)
       + 17 * ((second != null) ? second.hashCode() : 0);
 }
Exemplo n.º 3
0
 public int hashCode() {
   final int prime = 31;
   int result = 1;
   result = prime * result + ((first == null) ? 0 : first.hashCode());
   return result;
 }