xxl.relational
Class ListTuple

java.lang.Object
  |
  +--xxl.relational.AbstractTuple
        |
        +--xxl.relational.ListTuple

public class ListTuple
extends AbstractTuple

Linked list implementation of the Tuple interface.


	Tuple tuple = new ListTuple(resultSet);
	
creates a tuple for the given ResultSet. A LinkedList is used to store elements.


	ListTuple.FACTORY_METHOD.invoke(resultSet)
	
does the same.


Field Summary
static Function FACTORY_METHOD
           
 
Fields inherited from class xxl.relational.AbstractTuple
hashCode, list, resultSet
 
Constructor Summary
ListTuple(java.sql.ResultSet resultSet)
           
 
Methods inherited from class xxl.relational.AbstractTuple
equals, findColumn, getBoolean, getBoolean, getByte, getByte, getDate, getDate, getDouble, getDouble, getFloat, getFloat, getInt, getInt, getLong, getLong, getMetaData, getObject, getObject, getObjectFunction, getShort, getShort, getString, getString, getTime, getTime, getTimestamp, getTimestamp, getTupleComparator, hashCode, isNull, isNull
 
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

FACTORY_METHOD

public static final Function FACTORY_METHOD
Constructor Detail

ListTuple

public ListTuple(java.sql.ResultSet resultSet)