ConfigFileTraversalExtGen

io.shiftleft.codepropertygraph.generated.traversal.ConfigFileTraversalExtGen
final class ConfigFileTraversalExtGen[NodeType <: ConfigFile](val traversal: IterableOnce[NodeType]) extends AnyVal

Traversal steps for ConfigFile

Attributes

Graph
Supertypes
class AnyVal
trait Matchable
class Any

Members list

Concise view

Value members

Concrete methods

def content: Traversal[String]

Traverse to content property

Traverse to content property

Attributes

def content(pattern: String): Traversal[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*): Traversal[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): Traversal[NodeType]

Traverse to nodes where content matches value exactly.

Traverse to nodes where content matches value exactly.

Attributes

def contentExact(values: String*): Traversal[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): Traversal[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*): Traversal[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 name: Traversal[String]

Traverse to name property

Traverse to name property

Attributes

def name(pattern: String): Traversal[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*): Traversal[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): Traversal[NodeType]

Traverse to nodes where name matches value exactly.

Traverse to nodes where name matches value exactly.

Attributes

def nameExact(values: String*): Traversal[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): Traversal[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*): Traversal[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: IterableOnce[NodeType]