OnJava8-Examples/net/mindview/util/ThreeTuple.java

14 lines
319 B
Java
Raw Normal View History

2015-04-20 15:36:01 -07:00
//: net/mindview/util/ThreeTuple.java
package net.mindview.util;
public class ThreeTuple<A,B,C> extends TwoTuple<A,B> {
public final C third;
public ThreeTuple(A a, B b, C c) {
super(a, b);
third = c;
}
public String toString() {
return "(" + first + ", " + second + ", " + third +")";
}
} ///:~