WALA/com.ibm.wala.core/src/com/ibm/wala/util/collections/Pair.java

77 lines
1.8 KiB
Java

/*******************************************************************************
* Copyright (c) 2002 - 2006 IBM Corporation.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package com.ibm.wala.util.collections;
import java.util.Iterator;
import com.ibm.wala.util.debug.Assertions;
public class Pair<T,U> {
public final T fst;
public final U snd;
public Pair(T fst, U snd) {
this.fst = fst;
this.snd = snd;
}
private boolean check(Object x, Object y) {
return (x == null) ? (y == null) : x.equals(y);
}
public boolean equals(Object o) {
return (o instanceof Pair) && check(fst, ((Pair) o).fst) && check(snd, ((Pair) o).snd);
}
private int hc(Object o) {
return (o == null) ? 0 : o.hashCode();
}
public int hashCode() {
return hc(fst) * 7219 + hc(snd);
}
public Iterator<Object> iterator() {
return new Iterator<Object>() {
byte next = 1;
public boolean hasNext() {
return next > 0;
}
public Object next() {
switch (next) {
case 1 :
next++;
return fst;
case 2 :
next = 0;
return snd;
default :
return null;
}
}
public void remove() {
Assertions.UNREACHABLE();
}
};
}
/* (non-Javadoc)
* @see java.lang.Object#toString()
*/
public String toString() {
return "[" + fst + "," + snd +"]";
}
}