final class NamespaceBlockTraversal[NodeType <: NamespaceBlock] extends AnyVal
Traversal steps for NamespaceBlock
- Alphabetic
- By Inheritance
- NamespaceBlockTraversal
- AnyVal
- Any
- Hide All
- Show All
- Public
- All
Instance Constructors
- new NamespaceBlockTraversal(traversal: Traversal[NodeType])
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- Any
- final def ##(): Int
- Definition Classes
- Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- Any
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def filename(patterns: String*): Traversal[NodeType]
Traverse to nodes where the filename matches at least one of the regular expressions in
values - def filename(pattern: String): Traversal[NodeType]
Traverse to nodes where the filename matches the regular expression
value - def filename: Traversal[String]
Traverse to filename property
- def filenameExact(values: String*): Traversal[NodeType]
Traverse to nodes where filename matches one of the elements in
valuesexactly. - def filenameExact(value: String): Traversal[NodeType]
Traverse to nodes where filename matches
valueexactly. - def filenameNot(patterns: String*): Traversal[NodeType]
Traverse to nodes where filename does not match any of the regular expressions in
values. - def filenameNot(pattern: String): Traversal[NodeType]
Traverse to nodes where filename does not match the regular expression
value. - def fullName(patterns: String*): Traversal[NodeType]
Traverse to nodes where the fullName matches at least one of the regular expressions in
values - def fullName(pattern: String): Traversal[NodeType]
Traverse to nodes where the fullName matches the regular expression
value - def fullName: Traversal[String]
Traverse to fullName property
- def fullNameExact(values: String*): Traversal[NodeType]
Traverse to nodes where fullName matches one of the elements in
valuesexactly. - def fullNameExact(value: String): Traversal[NodeType]
Traverse to nodes where fullName matches
valueexactly. - def fullNameNot(patterns: String*): Traversal[NodeType]
Traverse to nodes where fullName does not match any of the regular expressions in
values. - def fullNameNot(pattern: String): Traversal[NodeType]
Traverse to nodes where fullName does not match the regular expression
value. - def getClass(): Class[_ <: AnyVal]
- Definition Classes
- AnyVal → Any
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- def name(patterns: String*): Traversal[NodeType]
Traverse to nodes where the name matches at least one of the regular expressions in
values - def name(pattern: String): Traversal[NodeType]
Traverse to nodes where the name matches the regular expression
value - def name: Traversal[String]
Traverse to name property
- def nameExact(values: String*): Traversal[NodeType]
Traverse to nodes where name matches one of the elements in
valuesexactly. - def nameExact(value: String): Traversal[NodeType]
Traverse to nodes where name matches
valueexactly. - def nameNot(patterns: String*): Traversal[NodeType]
Traverse to nodes where name does not match any of the regular expressions in
values. - def nameNot(pattern: String): Traversal[NodeType]
Traverse to nodes where name does not match the regular expression
value. - def order(values: Integer*): Traversal[NodeType]
Traverse to nodes where the order equals at least one of the given
values - def order(value: Integer): Traversal[NodeType]
Traverse to nodes where the order equals the given
value - def order: Traversal[Integer]
Traverse to order property
- def orderGt(value: Integer): Traversal[NodeType]
Traverse to nodes where the order is greater than the given
value - def orderGte(value: Integer): Traversal[NodeType]
Traverse to nodes where the order is greater than or equal the given
value - def orderLt(value: Integer): Traversal[NodeType]
Traverse to nodes where the order is less than the given
value - def orderLte(value: Integer): Traversal[NodeType]
Traverse to nodes where the order is less than or equal the given
value - def orderNot(values: Integer*): Traversal[NodeType]
Traverse to nodes where order is not equal to any of the given
values. - def orderNot(value: Integer): Traversal[NodeType]
Traverse to nodes where order is not equal to the given
value. - def toString(): String
- Definition Classes
- Any
- val traversal: Traversal[NodeType]