TraversalFileBase

io.shiftleft.codepropertygraph.generated.traversals.TraversalFileBase
final class TraversalFileBase[NodeType <: FileBase](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

def hash: Iterator[String]

Traverse to hash property

Traverse to hash property

Attributes

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

Traverse to nodes where the hash matches the regular expression value

Traverse to nodes where the hash matches the regular expression value

Attributes

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

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

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

Attributes

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

Traverse to nodes where hash matches value exactly.

Traverse to nodes where hash matches value exactly.

Attributes

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

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

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

Attributes

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

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

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

Attributes

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

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

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

Attributes

def name: Iterator[String]

Traverse to name property

Traverse to name property

Attributes

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

Traverse to nodes where the name matches the regular expression value

Traverse to nodes where the name matches the regular expression value

Attributes

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

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

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

Attributes

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

Traverse to nodes where name matches value exactly.

Traverse to nodes where name matches value exactly.

Attributes

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

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

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

Attributes

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

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

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

Attributes

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

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

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

Attributes

Concrete fields

val traversal: Iterator[NodeType]