Packages

object PathFinder

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. PathFinder
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Type Members

  1. case class EdgeEntries(edgeEntries: Seq[EdgeEntry]) extends PathEntry with Product with Serializable
  2. case class EdgeEntry(direction: Direction, label: String) extends PathEntry with Product with Serializable
  3. case class NodeEntry(node: Node) extends PathEntry with Product with Serializable
  4. case class Path(nodes: Seq[Node]) extends Product with Serializable
  5. sealed trait PathEntry extends AnyRef
  6. case class PathWithEdges(elements: Seq[PathEntry]) extends Product with Serializable

Value Members

  1. def apply(nodeA: Node, nodeB: Node, maxDepth: Int = -1): Seq[Path]