ca.uwaterloo.cs.ql.fb
Class TupleList

java.lang.Object
  extended by ca.uwaterloo.cs.ql.fb.TupleList
All Implemented Interfaces:
java.lang.Cloneable

public class TupleList
extends java.lang.Object
implements java.lang.Cloneable

TupleList


Constructor Summary
TupleList()
           
TupleList(int initialCapacity)
           
 
Method Summary
 void add(Tuple t)
           
 void addAll(TupleList list)
           
 void clear()
           
 java.lang.Object clone()
           
 Tuple get(int ind)
           
 boolean isEmpty()
           
 java.util.Iterator iterator()
           
 TupleList select(TupleSelector selector)
           
 int size()
           
 java.lang.Object[] toArray()
           
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

TupleList

public TupleList()

TupleList

public TupleList(int initialCapacity)
Method Detail

get

public Tuple get(int ind)

add

public void add(Tuple t)

addAll

public void addAll(TupleList list)

size

public int size()

clear

public void clear()

clone

public java.lang.Object clone()
Overrides:
clone in class java.lang.Object

toArray

public java.lang.Object[] toArray()

isEmpty

public boolean isEmpty()

iterator

public java.util.Iterator iterator()

select

public TupleList select(TupleSelector selector)