Packages

class Builder[A] extends AnyRef

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

Instance Constructors

  1. new Builder()

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def bfs: Builder[A]

    configure search algorithm to go "breadth first", rather than the default "depth first"

  6. def breadthFirstSearch: Builder[A]

    configure search algorithm to go "breadth first", rather than the default "depth first"

  7. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  8. def dedup: Builder[A]

    Keep a 'visited' list of elements to ensure we are not going in cycles.

  9. def emit(condition: (Traversal[A]) => Traversal[_]): Builder[A]

    Emit intermediate elements (along the way), if they meet the given condition.

    Emit intermediate elements (along the way), if they meet the given condition. Note that this does not apply a filter on the final elements of the traversal.

  10. def emit: Builder[A]

    Emit all intermediate elements (along the way).

  11. def emitAllButFirst: Builder[A]

    Emit intermediate elements (along the way), apart from the _first_ element

  12. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  13. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  14. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  15. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  16. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  17. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  18. def maxDepth(value: Int): Builder[A]

    Maximum depth to go down in the repeat traversal.

    Maximum depth to go down in the repeat traversal. Note that there may be other conditions like until|whilst etc.

  19. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  20. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  21. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  22. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  23. def toString(): String
    Definition Classes
    AnyRef → Any
  24. def until(condition: (Traversal[A]) => Traversal[_]): Builder[A]
  25. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  26. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  27. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  28. def whilst(condition: (Traversal[A]) => Traversal[_]): Builder[A]

    Stop traversing when given condition-traversal has no result.

    Stop traversing when given condition-traversal has no result. The condition-traversal is already evaluated at the first iteration, for classic while/repeat behaviour.

    n.b. the only reason not to call this while is to avoid using scala keywords, which would need to be quoted.

Deprecated Value Members

  1. def times(value: Int): Builder[A]

    Maximum depth to go down in the repeat traversal.

    Maximum depth to go down in the repeat traversal. Note that there may be other conditions like until|whilst etc.

    Annotations
    @deprecated
    Deprecated

    (Since version 1.153) use maxDepth instead - semantically equivalent, while it describes the meaning more precisely

Inherited from AnyRef

Inherited from Any

Ungrouped