Triples in Java [duplicate]
This question already has an answer here: Using Pairs or 2-tuples in Java [duplicate] 14 answers Possible Duplicate: Does Java need tuples? Does Java support triples or at least pairs? Does Java support tuples? I am trying to find a way to make a list so that it has a triple with initial point as first, terminal point at last, and distance in the middle. However, I can't seem to find anything about it. I usually just create my own class for these purposes. class Pair<A,B> { A a; B b; public Pair( A a, B b ) { this.a = a; this.b = b; } } If you have three related values like that it implies me