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

Packages that use Objects
edu.upc.dama.dex.algorithms Provides classes in order to run algorithms among graphs. 
edu.upc.dama.dex.core Provides the main DEX classes with all the basic but complete funcionality for graph and data manipulation. 
 

Uses of Objects in edu.upc.dama.dex.algorithms
 

Methods in edu.upc.dama.dex.algorithms that return Objects
 Objects ConnectedComponents.getNodes(long idConnectedComponent)
          Returns the collection of nodes contained in the given connected component.
 

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

Methods in edu.upc.dama.dex.core that return Objects
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.
 Objects Graph.explode(long oid, int type, short direction)
          Explodes an edge type from the given node.
 Objects Graph.explode(long oid, java.lang.String type, short direction)
          Deprecated. As of release 1.2, replace by Graph.explode(long, int, short).
 Objects Graph.explode(Objects nodes, int type, short direction)
          Explodes an edge type from the given node.
 Objects Graph.explode(Objects nodes, java.lang.String type, short direction)
          Deprecated. As of release 1.2, replace by Graph.explode(long, int, short).
 Objects Graph.findEdges(long tail, long head, int type)
          Gets all the edges of the given type between two given nodes.
 Objects Graph.heads(Objects edges)
          Gets the collection of head node identifiers from a collection of edge identifiers.
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.
 Objects Graph.neighbors(long oid, int type, short direction)
          Gets the neighbors from a node for the given edge type.
 Objects Graph.neighbors(long oid, java.lang.String type, short direction)
          Deprecated. As of release 1.2, replace by Graph.neighbors(long, int, short).
 Objects Graph.neighbors(Objects nodes, int type, short direction)
          Gets the neighbors from a node for the given edge type.
 Objects Graph.neighbors(Objects nodes, java.lang.String type, short direction)
          Deprecated. As of release 1.2, replace by Graph.neighbors(long, int, short).
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.
 Objects Graph.select(int type)
          Selects all the nodes or edges of the given type.
 Objects Graph.select(int type, java.lang.String attribute, Operation op, Value v)
          Deprecated. As of release 1.2, replace by Graph.select(long, short, edu.upc.dama.dex.core.Value).
 Objects Graph.select(long attribute, Operation op, Value v)
          Deprecated. As of release 1.2, replace by Graph.select(long, short, edu.upc.dama.dex.core.Value).
 Objects Graph.select(long attribute, short op, Value v)
          Selects all the nodes or edges which satisfy the condition.
 Objects Graph.select(long attribute, short op, Value v1, Value v2)
          Selects all the nodes or edges which satisfy the condition.
 Objects Graph.tails(Objects edges)
          Gets the collection of tail node identifiers from a collection of edge identifiers.
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.
 

Methods in edu.upc.dama.dex.core with parameters of type Objects
 long Objects.difference(Objects objs)
          Performs the difference operation with the given collection.
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.
 Objects Graph.explode(Objects nodes, int type, short direction)
          Explodes an edge type from the given node.
 Objects Graph.explode(Objects nodes, java.lang.String type, short direction)
          Deprecated. As of release 1.2, replace by Graph.explode(long, int, short).
 Objects Graph.heads(Objects edges)
          Gets the collection of head node identifiers from a collection of edge identifiers.
 long Objects.intersection(Objects objs)
          Performs the intersection operation with the given collection.
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.
 Objects Graph.neighbors(Objects nodes, int type, short direction)
          Gets the neighbors from a node for the given edge type.
 Objects Graph.neighbors(Objects nodes, java.lang.String type, short direction)
          Deprecated. As of release 1.2, replace by Graph.neighbors(long, int, short).
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.
 Objects Graph.tails(Objects edges)
          Gets the collection of tail node identifiers from a collection of edge identifiers.
 long Objects.union(Objects objs)
          Performs the union operation with the given collection.
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 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.