TraversalPropertyEvaluationStrategy

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

Attributes

Graph
Supertypes
class AnyVal
trait Matchable
class Any

Members list

Value members

Concrete methods

def evaluationStrategy: Iterator[String]

Traverse to evaluationStrategy property

Traverse to evaluationStrategy property

Attributes

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

Traverse to nodes where the evaluationStrategy matches the regular expression value

Traverse to nodes where the evaluationStrategy matches the regular expression value

Attributes

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

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

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

Attributes

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

Traverse to nodes where evaluationStrategy matches value exactly.

Traverse to nodes where evaluationStrategy matches value exactly.

Attributes

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

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

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

Attributes

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

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

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

Attributes

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

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

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

Attributes

Concrete fields

val traversal: Iterator[NodeType]