Edge

scalation.database.table.Edge
case class Edge(from: Vertex, to: Vertex, tuple: Tuple)

The Edge class includes three parts: The edge attributes in the form of a tuple of values, the source (from) vertex and target (to) vertex.

Value parameters

from

the source vertex

to

the target vertex

tuple

the tuple part of the edge (for edge attributes)

Attributes

Graph
Supertypes
trait Serializable
trait Product
trait Equals
class Object
trait Matchable
class Any
Show all

Members list

Value members

Concrete methods

def reverse: Edge

Create an edge in the reverse direction.

Create an edge in the reverse direction.

Attributes

override def toString: String

Convert the tuple within this edge to a string.

Convert the tuple within this edge to a string.

Attributes

Definition Classes
Any

Inherited methods

def productElementNames: Iterator[String]

Attributes

Inherited from:
Product
def productIterator: Iterator[Any]

Attributes

Inherited from:
Product