TraversalPropertyContent

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

Attributes

Graph
Supertypes
class AnyVal
trait Matchable
class Any

Members list

Value members

Concrete methods

def content: Iterator[String]

Traverse to content property

Traverse to content property

Attributes

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

Traverse to nodes where the content matches the regular expression value

Traverse to nodes where the content matches the regular expression value

Attributes

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

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

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

Attributes

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

Traverse to nodes where content matches value exactly.

Traverse to nodes where content matches value exactly.

Attributes

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

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

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

Attributes

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

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

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

Attributes

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

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

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

Attributes

Concrete fields

val traversal: Iterator[NodeType]