TraversalPropertyGenericSignature

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

Attributes

Graph
Supertypes
class AnyVal
trait Matchable
class Any

Members list

Value members

Concrete methods

def genericSignature: Iterator[String]

Traverse to genericSignature property

Traverse to genericSignature property

Attributes

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

Traverse to nodes where the genericSignature matches the regular expression value

Traverse to nodes where the genericSignature matches the regular expression value

Attributes

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

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

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

Attributes

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

Traverse to nodes where genericSignature matches value exactly.

Traverse to nodes where genericSignature matches value exactly.

Attributes

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

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

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

Attributes

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

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

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

Attributes

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

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

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

Attributes

Concrete fields

val traversal: Iterator[NodeType]