OnJava8-Examples/net/mindview/util/ThreeTuple.java
2015-05-29 14:18:51 -07:00

16 lines
372 B
Java

//: net/mindview/util/ThreeTuple.java
// ©2015 MindView LLC: see Copyright.txt
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;
}
@Override
public String toString() {
return "(" + first + ", " + second + ", " + third +")";
}
} ///:~