final class NodeTraversal[E <: Node] extends AnyVal
- Alphabetic
- By Inheritance
- NodeTraversal
- AnyVal
- Any
- Hide All
- Show All
- Public
- Protected
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[OdbEdge]
follow incoming and outgoing edges of given label
- def bothE: Traversal[OdbEdge]
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(short = "Traverse to node id", long = help.this.Doc.<init>$default$2, example = help.this.Doc.<init>$default$3)
- 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[OdbEdge]
follow incoming edges of given label
- def inE: Traversal[OdbEdge]
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(short = "follow outgoing edges to adjacent nodes", long = help.this.Doc.<init>$default$2, example = help.this.Doc.<init>$default$3)
- def outE(labels: String*): Traversal[OdbEdge]
follow outgoing edges of given label
- def outE: Traversal[OdbEdge]
follow outgoing edges
- def toString(): String
- Definition Classes
- Any
- val traversal: Traversal[E]