Uses of Interface
be.SIRAPRISE.client.Tuple

Packages that use Tuple
be.SIRAPRISE.client   
be.SIRAPRISE.client.jsba This package contains all the classes and interfaces for the Java SIRA_PRISE Bridging Architecture, as well as classes that can be used to manipulate catalog objects using the JSBA. 
 

Uses of Tuple in be.SIRAPRISE.client
 

Classes in be.SIRAPRISE.client that implement Tuple
 class AbstractTuple
          AbstractTuple provides method implementations for the Tuple interface
 class ClientTuple
           
 

Methods in be.SIRAPRISE.client that return types with arguments of type Tuple
 java.util.Set<Tuple> Relation.getTupleSet()
          Deprecated.  
 java.util.Set<Tuple> AbstractRelation.getTupleSet()
           
 java.util.Iterator<Tuple> TupleContainer.iterator()
          Gets an iterator over the tuples in the container.
abstract  java.util.Iterator<Tuple> AbstractTupleContainer.iterator()
          Gets an iterator over the tuples in the container
 java.util.Iterator<Tuple> AbstractTupleBag.iterator()
           
 java.util.Iterator<Tuple> AbstractRelation.iterator()
           
 

Methods in be.SIRAPRISE.client with parameters of type Tuple
 boolean OrderedRelation.addOK(Tuple tuple)
           
 boolean InsertionOrderTupleBag.addOK(Tuple tuple)
           
 boolean InsertionOrderRelation.addOK(Tuple tuple)
           
abstract  boolean AbstractTupleBag.addOK(Tuple tuple)
          "exit" method called by the addTuple() methods to check if it is OK to add the given tuple to this relation.
abstract  boolean AbstractRelation.addOK(Tuple tuple)
          "exit" method called by the addTuple() methods to check if it is OK to add the given tuple to this relation.
 void TupleContainer.addTupleWithHeadingCheck(Tuple tuple)
          Adds a Tuple to the container.
 void AbstractTupleContainer.addTupleWithHeadingCheck(Tuple tuple)
          Adds a Tuple to the container.
 void TupleContainer.addTupleWithoutHeadingCheck(Tuple tuple)
          Adds a Tuple to the container without checking the conformance of the tuple to the declared heading.
abstract  void AbstractTupleContainer.addTupleWithoutHeadingCheck(Tuple tuple)
          Adds a Tuple to the container without checking the conformance of the tuple to the declared heading.
 void AbstractTupleBag.addTupleWithoutHeadingCheck(Tuple t)
           
 void AbstractRelation.addTupleWithoutHeadingCheck(Tuple tuple)
           
 boolean TupleContainer.containsTuple(Tuple t)
          Checks whether the given tuple appears in this container
 boolean AbstractTupleBag.containsTuple(Tuple t)
           
 boolean AbstractRelation.containsTuple(Tuple t)
           
 boolean TupleContainer.removeTuple(Tuple t)
          Removes the given tuple from this container if that tuple appears there
abstract  boolean AbstractTupleContainer.removeTuple(Tuple t)
           
 boolean AbstractTupleBag.removeTuple(Tuple t)
           
 boolean AbstractRelation.removeTuple(Tuple t)
           
 

Constructor parameters in be.SIRAPRISE.client with type arguments of type Tuple
AbstractRelation(Heading heading, java.util.Set<Tuple> set)
          Creates the container, setting the intended heading for the tuples and the underlying Set object
AbstractTupleBag(Heading heading, java.util.List<Tuple> list)
          Creates the TupleBag
 

Uses of Tuple in be.SIRAPRISE.client.jsba
 

Methods in be.SIRAPRISE.client.jsba with parameters of type Tuple
static
<C> C
DBObjectFactory.getObject(Tuple tuple, java.lang.Class<C> objectClass)
          Get an objects holding the same information as that which is held in this tuple.
static
<C> C
DBObjectFactory.getObject(Tuple tuple, java.lang.Class<C> objectClass, java.util.HashMap<java.lang.String,SetterMethod> setterMethods)
          Gets an object of the given class, using the given set of setter methods and the attribute values from this tuple
static
<C> C
DBObjectFactory.getObjectIgnoringMissingSetters(Tuple tuple, java.lang.Class<C> objectClass)
          Get an objects holding the same information as that which is held in this tuple.
static java.util.Map<java.lang.Class<?>,java.lang.Object> DBObjectFactory.getObjects(Tuple tuple, java.lang.Class<?>[] objectClass)
          Get a Map of objects holding the same information as that which is held in this Tuple.
static java.util.Map<java.lang.Class<?>,java.lang.Object> DBObjectFactory.toObjects(Tuple tuple, java.util.Map<java.lang.Class<?>,java.util.HashMap<java.lang.String,SetterMethod>> classesProcessingMap)
          Gets a Map of objects holding the same information as that which is held in this tuple.