Uses of Class
edu.upc.dama.dex.core.Session

Packages that use Session
edu.upc.dama.dex.core Provides the main DEX classes with all the basic but complete funcionality for graph and data manipulation. 
 

Uses of Session in edu.upc.dama.dex.core
 

Methods in edu.upc.dama.dex.core that return Session
 Session Graph.getSession()
          Gets the parent Session instance.
 Session Objects.getSession()
          Gets the parent Session instance.
 Session GraphPool.newSession()
          Gets the Session instance.
 

Methods in edu.upc.dama.dex.core with parameters of type Session
static Objects Objects.difference(Session sess, Objects objs1, Objects objs2)
          Creates a new instance of Objects which is the difference of the two given collections.
 void GraphPool.dumpData(Session sess, java.io.File file)
          Dumps the logical content of the GraphPool into a text file.
 void GraphPool.dumpData(Session sess, java.lang.String file)
          Dumps the logical content of the GraphPool into a text file.
 void GraphPool.dumpSchema(Session sess, java.io.Writer writer)
          Dumps the schema of the GraphPool.
 void GraphPool.dumpStorage(Session sess, java.io.File file)
          Dumps the internal content of the GraphPool into a text file.
 void GraphPool.dumpStorage(Session sess, java.lang.String file)
          Dumps the internal content of the GraphPool into a text file.
static Objects Objects.intersection(Session sess, Objects objs1, Objects objs2)
          Creates a new instance of Objects which is the intersection of the two given collections.
static Objects Objects.sample(Session sess, Objects src, Objects exclude, long samples)
          Creates a new instance of Objects which is a sample of a given collection excluding the objects of another one.
static Objects Objects.union(Session sess, Objects objs1, Objects objs2)
          Creates a new instance of Objects which is the union of the two given collections.
 

Constructors in edu.upc.dama.dex.core with parameters of type Session
Objects(Session sess)
          Creates a new instance of Objects.
Objects(Session sess, Objects objs)
          Creates a new instance of Objects which is a copy of the given one.
Objects(Session sess, Objects objs1, Objects objs2, Objects.Combine c)
          Deprecated. As of release 1.2, replace by Objects.Objects(Session,Objects,Objects,short).
Objects(Session sess, Objects objs1, Objects objs2, short combine)
          Creates a new instance of Objects which is the combination of the two given collections.