Package org.optaplanner.core.impl.util
Interface Triple<A,B,C>
-
- Type Parameters:
A-B-C-
- All Known Subinterfaces:
MutableTriple<A,B,C>
public interface Triple<A,B,C>An immutable tuple of three values. Two instancesare equalif all three values in the first instance are equal to their counterpart in the other instance.
-
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Modifier and Type Method Description AgetA()BgetB()CgetC()static <A,B,C>
Triple<A,B,C>of(A a, B b, C c)
-