Package com.hazelcast.jet.datamodel
Class Tuple3<E0,E1,E2>  
java.lang.Object
com.hazelcast.jet.datamodel.Tuple3<E0,E1,E2>  
- Type Parameters:
- E0- the type of the field 0
- E1- the type of the field 1
- E2- the type of the field 2
An immutable 3-tuple (triple) of statically typed fields.
- Since:
- Jet 3.0
- 
Method SummaryModifier and TypeMethodDescriptionbooleanf0()Returns the value of the field 0.f1()Returns the value of the field 1.f2()Returns the value of the field 2.inthashCode()toString()static <E0,E1, E2> Tuple3<E0, E1, E2> tuple3(E0 f0, E1 f1, E2 f2) Returns a new 3-tuple with the supplied values.
- 
Method Details- 
tuple3public static <E0,E1, Tuple3<E0,E2> E1, tuple3E2> (@Nullable E0 f0, @Nullable E1 f1, @Nullable E2 f2) Returns a new 3-tuple with the supplied values.
- 
f0Returns the value of the field 0.
- 
f1Returns the value of the field 1.
- 
f2Returns the value of the field 2.
- 
equals
- 
hashCodepublic int hashCode()
- 
toString
 
-