Packages

abstract class BuilderImpl[N, E <: Edge[N]] extends AbstractBuilder[N, E]

Attributes
protected[collection]
Linear Supertypes
Known Subclasses
Type Hierarchy
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. BuilderImpl
  2. AbstractBuilder
  3. Growable
  4. AnyRef
  5. Any
Implicitly
  1. by StringFormat
  2. by Ensuring
  3. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new BuilderImpl()(implicit config: GraphConfig)

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. def ++=(xs: Iterable[OuterElem[N, E]]): BuilderImpl.this.type

    Alias for addAll(xs).

    Alias for addAll(xs).

    Definition Classes
    Growable
  4. final def +=(edge: E): BuilderImpl.this.type

    Alias for addOne(edge).

    Alias for addOne(edge).

    Definition Classes
    Growable
    Annotations
    @inline()
  5. final def +=(node: N): BuilderImpl.this.type

    Alias for addOne(node).

    Alias for addOne(node).

    Definition Classes
    Growable
    Annotations
    @inline()
  6. def ->[B](y: B): (BuilderImpl[N, E], B)
    Implicit
    This member is added by an implicit conversion from BuilderImpl[N, E] toArrowAssoc[BuilderImpl[N, E]] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  7. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  8. def add(edge: E): Boolean

    Adds a single edge to this graph.

    Adds a single edge to this graph.

    returns

    true if this graph has not contained edge before.

    Definition Classes
    BuilderImplGrowable
  9. def add(node: N): Boolean

    Adds a single node to this graph.

    Adds a single node to this graph.

    returns

    true if this graph has not contained node before.

    Attributes
    protected
    Definition Classes
    BuilderImplGrowable
  10. def addAll(nodes: Iterable[N], edges: Iterable[E]): BuilderImpl.this.type

    Adds all passed nodes and edges to this graph.

    Adds all passed nodes and edges to this graph.

    Definition Classes
    Growable
  11. def addAll(xs: Iterable[OuterElem[N, E]]): BuilderImpl.this.type

    Adds all elements produced by outer to this graph.

    Adds all elements produced by outer to this graph.

    Definition Classes
    Growable
  12. def addEdges(edges: Iterable[E]): BuilderImpl.this.type

    Adds all edges to this graph.

    Adds all edges to this graph. Nodes being ends of edges are also added if not yet present.

    Definition Classes
    Growable
  13. def addNodes(nodes: Iterable[N]): BuilderImpl.this.type

    Adds all nodes to this graph.

    Adds all nodes to this graph.

    Definition Classes
    Growable
  14. final def addOne(edge: E): BuilderImpl.this.type

    Adds a single node to this graph.

    Adds a single node to this graph.

    Definition Classes
    BuilderImplGrowable
  15. final def addOne(node: N): BuilderImpl.this.type

    Adds a single node to this graph.

    Adds a single node to this graph.

    Definition Classes
    BuilderImplGrowable
  16. final def addOuter(elem: OuterElem[N, E]): BuilderImpl.this.type

    Adds a single outer element to this graph.

    Adds a single outer element to this graph.

    Attributes
    protected[collection]
    Definition Classes
    Growable
  17. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  18. def clear(): Unit
    Definition Classes
    BuilderImplAbstractBuilder
  19. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @IntrinsicCandidate() @native()
  20. val edges: ArrayBuffer[E]
    Attributes
    protected
  21. def ensuring(cond: (BuilderImpl[N, E]) => Boolean, msg: => Any): BuilderImpl[N, E]
    Implicit
    This member is added by an implicit conversion from BuilderImpl[N, E] toEnsuring[BuilderImpl[N, E]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  22. def ensuring(cond: (BuilderImpl[N, E]) => Boolean): BuilderImpl[N, E]
    Implicit
    This member is added by an implicit conversion from BuilderImpl[N, E] toEnsuring[BuilderImpl[N, E]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  23. def ensuring(cond: Boolean, msg: => Any): BuilderImpl[N, E]
    Implicit
    This member is added by an implicit conversion from BuilderImpl[N, E] toEnsuring[BuilderImpl[N, E]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  24. def ensuring(cond: Boolean): BuilderImpl[N, E]
    Implicit
    This member is added by an implicit conversion from BuilderImpl[N, E] toEnsuring[BuilderImpl[N, E]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  25. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  26. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  27. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @IntrinsicCandidate() @native()
  28. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @IntrinsicCandidate() @native()
  29. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  30. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  31. val nodes: ArrayBuffer[N]
    Attributes
    protected
  32. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @IntrinsicCandidate() @native()
  33. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @IntrinsicCandidate() @native()
  34. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  35. def toString(): String
    Definition Classes
    AnyRef → Any
  36. def upsert(edge: E): Boolean

    If an inner edge equaling to edge is present in this graph, it is replaced by edge, otherwise edge will be inserted.

    If an inner edge equaling to edge is present in this graph, it is replaced by edge, otherwise edge will be inserted. This is useful if non-key parts of an immutable edge are to be modified.

    returns

    true if edge has been inserted, false if it has been replaced.

    Definition Classes
    BuilderImplAbstractBuilder
  37. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  38. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  39. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable]) @Deprecated
    Deprecated

    (Since version 9)

  2. def formatted(fmtstr: String): String
    Implicit
    This member is added by an implicit conversion from BuilderImpl[N, E] toStringFormat[BuilderImpl[N, E]] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.12.16) Use formatString.format(value) instead of value.formatted(formatString), or use the f"" string interpolator. In Java 15 and later, formatted resolves to the new method in String which has reversed parameters.

  3. def [B](y: B): (BuilderImpl[N, E], B)
    Implicit
    This member is added by an implicit conversion from BuilderImpl[N, E] toArrowAssoc[BuilderImpl[N, E]] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use -> instead. If you still wish to display it as one character, consider using a font with programming ligatures such as Fira Code.

Inherited from AbstractBuilder[N, E]

Inherited from Growable[N, E]

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion StringFormat fromBuilderImpl[N, E] to StringFormat[BuilderImpl[N, E]]

Inherited by implicit conversion Ensuring fromBuilderImpl[N, E] to Ensuring[BuilderImpl[N, E]]

Inherited by implicit conversion ArrowAssoc fromBuilderImpl[N, E] to ArrowAssoc[BuilderImpl[N, E]]

Ungrouped