jeco.core.util.Pair Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jeco-core Show documentation
Show all versions of jeco-core Show documentation
Java Evolutionary COmputation library
The newest version!
package jeco.core.util;
public class Pair {
public T a;
public Z b;
public Pair() {
}
public Pair(T a, Z b){
this.a = a;
this.b = b;
}
public T getA() {
return a;
}
public void setA(T a) {
this.a = a;
}
public Z getB() {
return b;
}
public void setB(Z b) {
this.b = b;
}
}