类 Triple<A,B,C>

java.lang.Object
cn.taketoday.core.Triple<A,B,C>
类型参数:
A - type of the first value.
B - type of the second value.
C - type of the third value.
所有已实现的接口:
Serializable

@Experimental public class Triple<A,B,C> extends Object implements Serializable
Represents a triad of values There is no meaning attached to values in this class, it can be used for any purpose. Triple exhibits value semantics, i.e. two triples are equal if all three components are equal. An example of decomposing it into values:
从以下版本开始:
4.0 2023/8/24 14:52
作者:
Harry Yang
另请参阅: