com.github.phantomthief.tuple.ThreeTuple Maven / Gradle / Ivy
/**
*
*/
package com.github.phantomthief.tuple;
/**
* @author w.vela
*
* @Date Feb 28, 2011 4:59:03 PM
*/
public class ThreeTuple extends TwoTuple {
public final C third;
public ThreeTuple(final A a, final B b, final C c) {
super(a, b);
third = c;
}
public C getThird() {
return third;
}
@Override
public String toString() {
return "(" + first + ", " + second + ", " + third + ")";
}
@Override
public int hashCode() {
final int prime = 31;
int result = super.hashCode();
result = prime * result + (third == null ? 0 : third.hashCode());
return result;
}
@Override
public boolean equals(final Object obj) {
if (this == obj) {
return true;
}
if (!super.equals(obj)) {
return false;
}
if (getClass() != obj.getClass()) {
return false;
}
final ThreeTuple, ?, ?> other = (ThreeTuple, ?, ?>) obj;
if (third == null) {
if (other.third != null) {
return false;
}
} else if (!third.equals(other.third)) {
return false;
}
return true;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy