TraversalPropertySignature

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

Attributes

Graph
Supertypes
class AnyVal
trait Matchable
class Any

Members list

Value members

Concrete methods

def signature: Iterator[String]

Traverse to signature property

Traverse to signature property

Attributes

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

Traverse to nodes where the signature matches the regular expression value

Traverse to nodes where the signature matches the regular expression value

Attributes

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

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

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

Attributes

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

Traverse to nodes where signature matches value exactly.

Traverse to nodes where signature matches value exactly.

Attributes

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

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

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

Attributes

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

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

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

Attributes

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

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

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

Attributes

Concrete fields

val traversal: Iterator[NodeType]