T
- the type of the first value.U
- the type of the second value.V
- the type of the third value.public class DataTuple<T,U,V> extends Object
Modifier and Type | Field and Description |
---|---|
T |
firstValue |
U |
secondValue |
V |
thirdValue |
Constructor and Description |
---|
DataTuple(T firstValue)
Creates a new instance of the
DataTuple class by specifying its first value. |
DataTuple(T firstValue,
U secondValue)
Creates a new instance of the
DataTuple class by specifying the first two values. |
DataTuple(T firstValue,
U secondValue,
V thirdValue)
Creates a new instance of the
DataTuple class with
specified values. |
public T firstValue
public U secondValue
public V thirdValue
public DataTuple(T firstValue, U secondValue, V thirdValue)
DataTuple
class with
specified values.firstValue
- the first value of the tuple.secondValue
- the second value of the tuple.thirdValue
- the third value of the tuple.public DataTuple(T firstValue, U secondValue)
DataTuple
class by specifying the first two values.firstValue
- the first value of the tuple.secondValue
- the second value of the tuple.