final class NodeTraversal[E <: Node] extends AnyVal
- Alphabetic
- By Inheritance
- NodeTraversal
- AnyVal
- Any
- Hide All
- Show All
- Public
- Protected
Instance Constructors
- new NodeTraversal(traversal: Iterator[E])
Type Members
- type Traversal[A] = Iterator[A]
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- Any
- final def ##: Int
- Definition Classes
- Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- Any
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def both(labels: String*): Traversal[Node]
follow incoming and outgoing edges of given labels to adjacent nodes
- def both: Traversal[Node]
follow incoming and outgoing edges to adjacent nodes
- def bothE(labels: String*): Traversal[Edge]
follow incoming and outgoing edges of given label
- def bothE: Traversal[Edge]
follow incoming and outgoing edges
- def getClass(): Class[_ <: AnyVal]
- Definition Classes
- AnyVal → Any
- def hasId(values: Long*): Traversal[E]
alias for
alias for
id
- def hasId(value: Long): Traversal[E]
alias for
alias for
id
- def id(values: Long*): Traversal[E]
Filter by given ids Note: do not use as the first step in a traversal, e.g.
Filter by given ids Note: do not use as the first step in a traversal, e.g.
traversalSource.all.id(value)
. UsetraversalSource.withId
instead, it is much faster - def id(value: Long): Traversal[E]
Filter by given id Note: do not use as the first step in a traversal, e.g.
Filter by given id Note: do not use as the first step in a traversal, e.g.
traversalSource.all.id(value)
. UsetraversalSource.withId
instead, it is much faster - def id: Traversal[Long]
- Annotations
- @Doc()
- def in(labels: String*): Traversal[Node]
follow incoming edges of given label to adjacent nodes
- def in: Traversal[Node]
follow incoming edges to adjacent nodes
- def inE(labels: String*): Traversal[Edge]
follow incoming edges of given label
- def inE: Traversal[Edge]
follow incoming edges
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- def out(labels: String*): Traversal[Node]
follow outgoing edges of given labels to adjacent nodes
- def out: Traversal[Node]
follow outgoing edges to adjacent nodes
follow outgoing edges to adjacent nodes
- Annotations
- @Doc()
- def outE(labels: String*): Traversal[Edge]
follow outgoing edges of given label
- def outE: Traversal[Edge]
follow outgoing edges
- def toString(): String
- Definition Classes
- Any
- val traversal: Iterator[E]