Class GridTriple<T>
- java.lang.Object
-
- org.apache.ignite.internal.util.lang.GridTuple3<T,T,T>
-
- org.apache.ignite.internal.util.lang.GridTriple<T>
-
- All Implemented Interfaces:
Externalizable,Serializable,Cloneable,Iterable<Object>
public class GridTriple<T> extends GridTuple3<T,T,T>
Simple extension overGridTuple3for three objects of the same type.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description GridTriple()Empty constructor required byExternalizable.GridTriple(T t1, T t2, T t3)Creates triple with given objects.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Objectclone()-
Methods inherited from class org.apache.ignite.internal.util.lang.GridTuple3
equals, get1, get2, get3, hashCode, iterator, readExternal, set, set1, set2, set3, toString, writeExternal
-
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface java.lang.Iterable
forEach, spliterator
-
-
-
-
Constructor Detail
-
GridTriple
public GridTriple()
Empty constructor required byExternalizable.
-
-