Uses of Interface
org.objectweb.medor.tuple.api.Tuple

Packages that use Tuple
org.objectweb.medor.datasource.rdb.lib   
org.objectweb.medor.eval.cache.api   
org.objectweb.medor.eval.cache.lib   
org.objectweb.medor.eval.lib   
org.objectweb.medor.eval.prefetch.api   
org.objectweb.medor.eval.prefetch.lib   
org.objectweb.medor.filter.api   
org.objectweb.medor.filter.lib   
org.objectweb.medor.filter.postfix   
org.objectweb.medor.tuple.api   
org.objectweb.medor.tuple.lib   
 

Uses of Tuple in org.objectweb.medor.datasource.rdb.lib
 

Methods in org.objectweb.medor.datasource.rdb.lib that return Tuple
 Tuple JDBCTupleCollection.getTuple()
           
 Tuple JDBCTupleCollection.getTuple(int row)
           
 

Uses of Tuple in org.objectweb.medor.eval.cache.api
 

Methods in org.objectweb.medor.eval.cache.api that return Tuple
 Tuple CollectionCache.getTuple(int tupleIndex)
           
 

Methods in org.objectweb.medor.eval.cache.api with parameters of type Tuple
 boolean CollectionCache.putTuple(int indexTuple, Tuple t)
           
 

Uses of Tuple in org.objectweb.medor.eval.cache.lib
 

Methods in org.objectweb.medor.eval.cache.lib that return Tuple
 Tuple TupleCache.getTuple(int index)
           
 Tuple WindowCachedTupleCollection.getTuple()
           
 Tuple WindowCachedTupleCollection.getTuple(int row)
           
 

Methods in org.objectweb.medor.eval.cache.lib with parameters of type Tuple
 boolean TupleCache.putTuple(int index, Tuple t)
           
 

Uses of Tuple in org.objectweb.medor.eval.lib
 

Methods in org.objectweb.medor.eval.lib that return Tuple
 Tuple UnnestEvaluatedTC.getTuple()
           
 Tuple UnnestEvaluatedTC.getTuple(int numTuple)
           
 Tuple ProjectEvaluatedTC.getTuple()
           
 Tuple ProjectEvaluatedTC.getTuple(int numTuple)
           
 Tuple SelProjEvaluatedTC.getTuple()
           
 Tuple SelProjEvaluatedTC.getTuple(int numTuple)
           
 Tuple CartesianEvaluatedTC.getTuple()
           
 Tuple CartesianEvaluatedTC.getTuple(int numTuple)
           
 Tuple NestEvaluatedTC.getTuple()
           
 Tuple NestEvaluatedTC.getTuple(int numTuple)
           
 Tuple BinaryImplicitTC.getTuple()
           
 Tuple BinaryImplicitTC.getTuple(int numTuple)
           
 

Uses of Tuple in org.objectweb.medor.eval.prefetch.api
 

Methods in org.objectweb.medor.eval.prefetch.api that return Tuple
 Tuple PrefetchBuffer.getTuple(java.lang.Object index)
           
 Tuple PrefetchCache.getPrefetchTuple(java.lang.Object index, java.lang.Object cat, java.lang.Object ctxt)
          Retrieves the prefetched tuple from this cache associated with this index information, within the given caching context.
 

Uses of Tuple in org.objectweb.medor.eval.prefetch.lib
 

Methods in org.objectweb.medor.eval.prefetch.lib that return Tuple
 Tuple PrefetchBufferImpl.getTuple(java.lang.Object index)
           
 Tuple IntermediaryPrefetchBufferImpl.getTuple(java.lang.Object index)
          Uses the association table to change the tuple retrieved from the delegatePb into a valid tuple for this prefetch buffer.
 Tuple PrefetchCacheImpl.getPrefetchTuple(java.lang.Object index, java.lang.Object cat, java.lang.Object ctxt)
           
 Tuple DummyPrefetchBuffer.getTuple(java.lang.Object index)
           
 

Methods in org.objectweb.medor.eval.prefetch.lib with parameters of type Tuple
static java.lang.String PrefetchCacheImpl.printTuple(Tuple t)
           
 

Uses of Tuple in org.objectweb.medor.filter.api
 

Methods in org.objectweb.medor.filter.api with parameters of type Tuple
 Operand ExpressionHelper.evaluate(Expression[] stack, ParameterOperand[] parameters, Tuple t)
           
 boolean BelongOperator.evaluate(Tuple element, TupleCollection tc)
           
 

Uses of Tuple in org.objectweb.medor.filter.lib
 

Methods in org.objectweb.medor.filter.lib with parameters of type Tuple
 boolean BasicBelongOperator.evaluate(Tuple tuple, TupleCollection tc)
           
 

Uses of Tuple in org.objectweb.medor.filter.postfix
 

Methods in org.objectweb.medor.filter.postfix with parameters of type Tuple
 Operand PostfixExpressionHelper.evaluate(Expression[] stack, ParameterOperand[] parameters, Tuple t)
           
 

Uses of Tuple in org.objectweb.medor.tuple.api
 

Methods in org.objectweb.medor.tuple.api that return Tuple
 Tuple TupleCollection.getTuple()
          Returns the Tuple value of the current row of this TupleCollection object.
 Tuple TupleCollection.getTuple(int row)
          Returns the Tuple value of the designeted row of this TupleCollection object.
 

Methods in org.objectweb.medor.tuple.api with parameters of type Tuple
 void TupleLoader.loadTuple(Tuple source, VariableOperand[] destination, ParameterOperand[] parameters)
          Loads a source Tuple into an array of Operands.
 

Uses of Tuple in org.objectweb.medor.tuple.lib
 

Classes in org.objectweb.medor.tuple.lib that implement Tuple
 class MemoryTuple
          This class represent a tuple interface in a memory.
 

Methods in org.objectweb.medor.tuple.lib that return Tuple
 Tuple EmptyTupleCollection.getTuple()
           
 Tuple EmptyTupleCollection.getTuple(int row)
           
 Tuple ExplicitTupleCollection.getTuple(int i)
          Returns the value of the designated row number of the TupleCollection as a Tuple Object.
 Tuple ExplicitTupleCollection.getTuple()
           
 

Methods in org.objectweb.medor.tuple.lib with parameters of type Tuple
 void GeneralTupleLoader.loadTuple(Tuple sourceBuffer, VariableOperand[] temp, ParameterOperand[] parameters)
           
 void ExplicitTupleCollection.insertTuple(int i, Tuple T)
          Insert the tuple T at the designated row number of the TupleCollection
 void ExplicitTupleCollection.insertTuple(Tuple T)
          Insert the tuple T at the last of this TupleCollection object
 boolean ExplicitTupleCollection.contains(Tuple T)
          Some operations of researchs and iterations.