Package com.couchbase.client.core.lang
Class Tuple3<T1,T2,T3>
- java.lang.Object
-
- com.couchbase.client.core.lang.Tuple3<T1,T2,T3>
-
- Type Parameters:
T1
- the type of the first value.T2
- the type of the second value.T3
- the type of the third value.
public final class Tuple3<T1,T2,T3> extends Object
A container for three values. Use the correspondingTuple.create(Object, Object, Object)
method to instantiate this tuple.- Since:
- 1.0
- Author:
- Michael Nitschinger
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
toString()
T1
value1()
Get the first value.T2
value2()
Get the second value.T3
value3()
Get the third value.
-