TraversalModifierBase

io.shiftleft.codepropertygraph.generated.traversals.TraversalModifierBase
final class TraversalModifierBase[NodeType <: ModifierBase](val traversal: Iterator[NodeType]) extends AnyVal

Attributes

Graph
Supertypes
class AnyVal
trait Matchable
class Any

Members list

Value members

Concrete methods

def modifierType: Iterator[String]

Traverse to modifierType property

Traverse to modifierType property

Attributes

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

Traverse to nodes where the modifierType matches the regular expression value

Traverse to nodes where the modifierType matches the regular expression value

Attributes

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

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

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

Attributes

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

Traverse to nodes where modifierType matches value exactly.

Traverse to nodes where modifierType matches value exactly.

Attributes

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

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

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

Attributes

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

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

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

Attributes

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

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

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

Attributes

Concrete fields

val traversal: Iterator[NodeType]