TraversalPropertyArgumentName

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

Attributes

Graph
Supertypes
class AnyVal
trait Matchable
class Any

Members list

Value members

Concrete methods

def argumentName: Iterator[String]

Traverse to argumentName property

Traverse to argumentName property

Attributes

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

Traverse to nodes where the argumentName matches the regular expression value

Traverse to nodes where the argumentName matches the regular expression value

Attributes

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

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

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

Attributes

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

Traverse to nodes where argumentName matches value exactly.

Traverse to nodes where argumentName matches value exactly.

Attributes

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

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

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

Attributes

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

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

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

Attributes

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

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

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

Attributes

Concrete fields

val traversal: Iterator[NodeType]