xxl.relational
Class ArrayTuple

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

public class ArrayTuple
extends AbstractTuple

This is an Array implementation of the Tuple interface.


	Tuple tuple = new ArrayTuple(resultSet);
	
creates a tuple for the given ResultSet. An ArrayList is used to store elements.


	ArrayTuple.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
ArrayTuple(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

ArrayTuple

public ArrayTuple(java.sql.ResultSet resultSet)