KeyValuePairTraversalExtGen

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

Traversal steps for KeyValuePair

Attributes

Graph
Supertypes
class AnyVal
trait Matchable
class Any

Members list

Concise view

Value members

Concrete methods

def key: Traversal[String]

Traverse to key property

Traverse to key property

Attributes

def key(pattern: String): Traversal[NodeType]

Traverse to nodes where the key matches the regular expression value

Traverse to nodes where the key matches the regular expression value

Attributes

def key(patterns: String*): Traversal[NodeType]

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

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

Attributes

def keyExact(value: String): Traversal[NodeType]

Traverse to nodes where key matches value exactly.

Traverse to nodes where key matches value exactly.

Attributes

def keyExact(values: String*): Traversal[NodeType]

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

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

Attributes

def keyNot(pattern: String): Traversal[NodeType]

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

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

Attributes

def keyNot(patterns: String*): Traversal[NodeType]

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

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

Attributes

def value: Traversal[String]

Traverse to value property

Traverse to value property

Attributes

def value(pattern: String): Traversal[NodeType]

Traverse to nodes where the value matches the regular expression value

Traverse to nodes where the value matches the regular expression value

Attributes

def value(patterns: String*): Traversal[NodeType]

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

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

Attributes

def valueExact(value: String): Traversal[NodeType]

Traverse to nodes where value matches value exactly.

Traverse to nodes where value matches value exactly.

Attributes

def valueExact(values: String*): Traversal[NodeType]

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

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

Attributes

def valueNot(pattern: String): Traversal[NodeType]

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

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

Attributes

def valueNot(patterns: String*): Traversal[NodeType]

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

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

Attributes

Concrete fields

val traversal: IterableOnce[NodeType]