get

public T get<T>(int i, Class<T> varType)

Returns the (typed) i-th element of the tuple.

Return

the (typed) i-th element of the tuple.

Parameters

i

index in the tuple of the element of interest

varType

class of the element of interest

<T>

the return type resulting by casting the element to the class


public Object get(int i)

Returns the i-th element of a tuple as an Object.

Return

the Object for the i-th element of the tuple

Parameters

i

index in the tuple of the element of interest