Packages

final class FileTraversal[NodeType <: File] extends AnyVal

Traversal steps for File

Linear Supertypes
AnyVal, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. FileTraversal
  2. AnyVal
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new FileTraversal(traversal: Traversal[NodeType])

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    Any
  2. final def ##: Int
    Definition Classes
    Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    Any
  4. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def getClass(): Class[_ <: AnyVal]
    Definition Classes
    AnyVal → Any
  6. def hash(patterns: String*): Traversal[NodeType]

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

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

    Traverse to nodes where the hash matches the regular expression value

  8. def hash: Traversal[String]

    Traverse to hash property

  9. def hashExact(values: String*): Traversal[NodeType]

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

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

    Traverse to nodes where hash matches value exactly.

  11. def hashNot(patterns: String*): Traversal[NodeType]

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

  12. def hashNot(pattern: String): Traversal[NodeType]

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

  13. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  14. def name(patterns: String*): Traversal[NodeType]

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

  15. def name(pattern: String): Traversal[NodeType]

    Traverse to nodes where the name matches the regular expression value

  16. def name: Traversal[String]

    Traverse to name property

  17. def nameExact(values: String*): Traversal[NodeType]

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

  18. def nameExact(value: String): Traversal[NodeType]

    Traverse to nodes where name matches value exactly.

  19. def nameNot(patterns: String*): Traversal[NodeType]

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

  20. def nameNot(pattern: String): Traversal[NodeType]

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

  21. def order(values: Integer*): Traversal[NodeType]

    Traverse to nodes where the order equals at least one of the given values

  22. def order(value: Integer): Traversal[NodeType]

    Traverse to nodes where the order equals the given value

  23. def order: Traversal[Integer]

    Traverse to order property

  24. def orderGt(value: Integer): Traversal[NodeType]

    Traverse to nodes where the order is greater than the given value

  25. def orderGte(value: Integer): Traversal[NodeType]

    Traverse to nodes where the order is greater than or equal the given value

  26. def orderLt(value: Integer): Traversal[NodeType]

    Traverse to nodes where the order is less than the given value

  27. def orderLte(value: Integer): Traversal[NodeType]

    Traverse to nodes where the order is less than or equal the given value

  28. def orderNot(values: Integer*): Traversal[NodeType]

    Traverse to nodes where order is not equal to any of the given values.

  29. def orderNot(value: Integer): Traversal[NodeType]

    Traverse to nodes where order is not equal to the given value.

  30. def toString(): String
    Definition Classes
    Any
  31. val traversal: Traversal[NodeType]

Inherited from AnyVal

Inherited from Any

Ungrouped