TraversalPropertyContainedRef

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

Attributes

Graph
Supertypes
class AnyVal
trait Matchable
class Any

Members list

Value members

Concrete methods

def containedRef: Iterator[String]

Traverse to containedRef property

Traverse to containedRef property

Attributes

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

Traverse to nodes where the containedRef matches the regular expression value

Traverse to nodes where the containedRef matches the regular expression value

Attributes

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

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

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

Attributes

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

Traverse to nodes where containedRef matches value exactly.

Traverse to nodes where containedRef matches value exactly.

Attributes

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

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

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

Attributes

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

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

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

Attributes

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

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

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

Attributes

Concrete fields

val traversal: Iterator[NodeType]