|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object net.sf.farrago.fennel.tuple.FennelTupleData
public class FennelTupleData
FennelTupleData is an in-memory collection of independent data values, as explained in the fennel tuple design document. This class is JDK 1.4 compatible.
Field Summary | |
---|---|
private List |
datums
the TupleDatums we are responsible for. |
Constructor Summary | |
---|---|
FennelTupleData()
default constructor. |
|
FennelTupleData(FennelTupleDescriptor tupleDesc)
creates a FennelTupleData object from a FennelTupleDescriptor. |
Method Summary | |
---|---|
void |
add(FennelTupleDatum d)
adds a new FennelTupleDatum object. |
void |
compute(FennelTupleDescriptor tupleDesc)
creates our FennelTupleDatum objects from a FennelTupleDescriptor. |
boolean |
containsNull()
indicates whether this tuple contains any null FennelTupleDatum elements. |
FennelTupleDatum |
getDatum(int n)
obtains a FennelTupleDatum object given the index of an entry. |
int |
getDatumCount()
returns the number of datums we have. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
---|
private final List datums
Constructor Detail |
---|
public FennelTupleData()
public FennelTupleData(FennelTupleDescriptor tupleDesc)
Method Detail |
---|
public FennelTupleDatum getDatum(int n)
public int getDatumCount()
public void add(FennelTupleDatum d)
public void compute(FennelTupleDescriptor tupleDesc)
public boolean containsNull()
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |