Uses of Interface
be.SIRAPRISE.client.TupleContainer

Packages that use TupleContainer
be.SIRAPRISE.client   
 

Uses of TupleContainer in be.SIRAPRISE.client
 

Subinterfaces of TupleContainer in be.SIRAPRISE.client
 interface Relation
          A Relation is a TupleContainer that cannot contain duplicates (i.e. its collection of tuples is a set)
 interface TupleBag
          A TupleBag is a collection of tuples that can contain the same tuple value more than once.
 

Classes in be.SIRAPRISE.client that implement TupleContainer
 class AbstractRelation
          The AbstractRelation provides an implementation for the Relation interface
 class AbstractTupleBag
          Abstract implementation of the TupleBag interface
 class AbstractTupleContainer
          Abstract implementation of the TupleContainer interface
 class InsertionOrderRelation
          An InsertionOrderRelation is a relation that maintains its tuples in insertion order.
 class InsertionOrderTupleBag
          An InsertionOrderTupleBag is a TupleBag that maintains its tuples in insertion order
 class OrderedRelation
          An OrderedRelation is a relation that maintains its tuples in the order determined by the given comparator
 

Methods in be.SIRAPRISE.client with parameters of type TupleContainer
 void TupleContainer.addTuplesWithHeadingCheck(TupleContainer tupleContainer)
          Adds all tuples of the given TupleContainer to this one.
 void AbstractTupleContainer.addTuplesWithHeadingCheck(TupleContainer tupleContainer)
          Adds all tuples of the given TupleContainer to this one.
 void TupleContainer.addTuplesWithoutHeadingCheck(TupleContainer tupleContainer)
          Adds all tuples of the given TupleContainer to this one.
 void AbstractTupleContainer.addTuplesWithoutHeadingCheck(TupleContainer tupleContainer)
          Adds all tuples of the given TupleContainer to this one.
 boolean TupleContainer.containsTuples(TupleContainer tupleContainer)
          Checks whether all tuples that appear in the given container also appear in this one
 boolean AbstractTupleBag.containsTuples(TupleContainer tupleContainer)
           
 boolean AbstractRelation.containsTuples(TupleContainer tupleContainer)
           
 int TupleContainer.removeTuples(TupleContainer tupleContainer)
          Removes all tuples appearing in the given tupleContainer from this tupleContainer if that tuple appears there
 int AbstractTupleContainer.removeTuples(TupleContainer tupleContainer)