MetaDataTraversalExtGen

final
class MetaDataTraversalExtGen[NodeType <: MetaData](val traversal: IterableOnce[NodeType]) extends AnyVal

Traversal steps for MetaData

class AnyVal
trait Matchable
class Any

Value members

Concrete methods

def hash: Traversal[String]

Traverse to hash property

Traverse to hash property

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

Traverse to nodes where the hash matches the regular expression value

Traverse to nodes where the hash matches the regular expression value

def hash(patterns: String*): Traversal[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

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

Traverse to nodes where hash matches value exactly.

Traverse to nodes where hash matches value exactly.

def hashExact(values: String*): Traversal[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.

def hashNot(pattern: String): Traversal[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.

def hashNot(patterns: String*): Traversal[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.

def language: Traversal[String]

Traverse to language property

Traverse to language property

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

Traverse to nodes where the language matches the regular expression value

Traverse to nodes where the language matches the regular expression value

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

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

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

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

Traverse to nodes where language matches value exactly.

Traverse to nodes where language matches value exactly.

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

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

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

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

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

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

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

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

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

def overlays: Traversal[String]

Traverse to overlays property

Traverse to overlays property

def root: Traversal[String]

Traverse to root property

Traverse to root property

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

Traverse to nodes where the root matches the regular expression value

Traverse to nodes where the root matches the regular expression value

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

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

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

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

Traverse to nodes where root matches value exactly.

Traverse to nodes where root matches value exactly.

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

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

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

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

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

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

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

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

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

def version: Traversal[String]

Traverse to version property

Traverse to version property

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

Traverse to nodes where the version matches the regular expression value

Traverse to nodes where the version matches the regular expression value

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

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

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

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

Traverse to nodes where version matches value exactly.

Traverse to nodes where version matches value exactly.

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

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

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

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

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

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

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

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

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

Concrete fields

val traversal: IterableOnce[NodeType]