TraversalPropertyNodeLabel

io.shiftleft.codepropertygraph.generated.traversals.TraversalPropertyNodeLabel
final class TraversalPropertyNodeLabel[NodeType <: StoredNode & StaticType[HasNodeLabelEMT]](val traversal: Iterator[NodeType]) extends AnyVal

Attributes

Graph
Supertypes
class AnyVal
trait Matchable
class Any

Members list

Value members

Concrete methods

def nodeLabel: Iterator[String]

Traverse to nodeLabel property

Traverse to nodeLabel property

Attributes

def nodeLabel(pattern: String): Iterator[NodeType]

Traverse to nodes where the nodeLabel matches the regular expression value

Traverse to nodes where the nodeLabel matches the regular expression value

Attributes

def nodeLabel(patterns: String*): Iterator[NodeType]

Traverse to nodes where the nodeLabel matches at least one of the regular expressions in values

Traverse to nodes where the nodeLabel matches at least one of the regular expressions in values

Attributes

def nodeLabelExact(value: String): Iterator[NodeType]

Traverse to nodes where nodeLabel matches value exactly.

Traverse to nodes where nodeLabel matches value exactly.

Attributes

def nodeLabelExact(values: String*): Iterator[NodeType]

Traverse to nodes where nodeLabel matches one of the elements in values exactly.

Traverse to nodes where nodeLabel matches one of the elements in values exactly.

Attributes

def nodeLabelNot(pattern: String): Iterator[NodeType]

Traverse to nodes where nodeLabel does not match the regular expression value.

Traverse to nodes where nodeLabel does not match the regular expression value.

Attributes

def nodeLabelNot(patterns: String*): Iterator[NodeType]

Traverse to nodes where nodeLabel does not match any of the regular expressions in values.

Traverse to nodes where nodeLabel does not match any of the regular expressions in values.

Attributes

Concrete fields

val traversal: Iterator[NodeType]