Packages

trait InnerNode extends InnerNodeParam[N] with Node with InnerElem

Type Hierarchy
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. InnerNode
  2. InnerElem
  3. Node
  4. Serializable
  5. InnerNodeParam
  6. NodeParam
  7. OutParam
  8. Param
  9. AnyRef
  10. Any
Implicitly
  1. by EdgeAssoc
  2. by anyToNode
  3. by ChainingOps
  4. by any2stringadd
  5. by StringFormat
  6. by Ensuring
  7. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Abstract Value Members

  1. abstract def addDiPredecessors(edge: EdgeT, add: (NodeT) => Unit): Unit
    Attributes
    protected[collection]
  2. abstract def addDiSuccessors(edge: EdgeT, add: (NodeT) => Unit): Unit
    Attributes
    protected[collection]
  3. abstract def addNeighbors(edge: EdgeT, add: (NodeT) => Unit): Unit
    Attributes
    protected[collection]
  4. abstract def connectionsWith(other: NodeT): Set[EdgeT] with FilterableSet[EdgeT]

    All edges connecting this node with other including outgoing and incoming edges.

    All edges connecting this node with other including outgoing and incoming edges. This method is useful in case of multigraphs.

    other

    A node which is possibly connected with this node.

    returns

    All edges connecting this node with other. If other equals this node all hooks are returned. If other is not connected with this node an empty set is returned.

  5. abstract def degree: Int

    The degree of this node.

    The degree of this node.

    returns

    the number of edges that connect to this node. An edge that connects to this node at more than one ends (loop) is counted as much times as it is connected to this node.

  6. abstract def diPredecessors: Set[NodeT]

    All direct predecessors of this node, also called predecessor set or open in-neighborhood: source nodes of directed incident edges and / or adjacent nodes of undirected incident edges excluding this node.

    All direct predecessors of this node, also called predecessor set or open in-neighborhood: source nodes of directed incident edges and / or adjacent nodes of undirected incident edges excluding this node.

    returns

    set of all direct predecessors of this node.

  7. abstract def diSuccessors: Set[NodeT]

    All direct successors of this node, also called successor set or open out-neighborhood: target nodes of directed incident edges and / or adjacent nodes of undirected incident edges excluding this node.

    All direct successors of this node, also called successor set or open out-neighborhood: target nodes of directed incident edges and / or adjacent nodes of undirected incident edges excluding this node.

    returns

    set of all direct successors of this node.

  8. abstract def edges: ExtSet[EdgeT]

    All edges at this node - commonly denoted as E(v).

    All edges at this node - commonly denoted as E(v).

    returns

    all edges connecting to this node.

  9. abstract def findIncomingFrom(from: NodeT): Option[EdgeT]

    An edge at from having this node as a successor.

    An edge at from having this node as a successor.

    from

    The node being at an edge which has this node as a successor.

    returns

    An edges at from having this node as a successor. If from equals this node a hook may be returned. If from is not an adjacent node None is returned.

  10. abstract def findOutgoingTo(to: NodeT): Option[EdgeT]

    An outgoing edge connecting this node with to.

    An outgoing edge connecting this node with to.

    to

    The node which is the end point of an edge starting at this node.

    returns

    One of possibly several edges connecting this node with to. If to equals this node a hook may be returned. If to is not an adjacent node None is returned.

  11. abstract def hasOnlyHooks: Boolean

    Checks whether this node has only hooks or no edges at all.

    Checks whether this node has only hooks or no edges at all.

    returns

    true if this node has only hooks or it isolated.

  12. abstract def hasPredecessors: Boolean

    Whether this node has any predecessors.

  13. abstract def hasSuccessors: Boolean

    Whether this node has any successors.

  14. abstract def hook: Option[EdgeT]

    returns

    A looping edge out of one or more at this node or None if this node has no looping edge.

  15. abstract def inDegree(nodeFilter: NodeFilter, edgeFilter: EdgeFilter = anyEdge, includeHooks: Boolean = false, ignoreMultiEdges: Boolean = true): Int

    The incoming degree of this node after applying some filters to the incoming edges and predecessors.

  16. abstract def inDegree: Int

    The incoming degree of this node.

    The incoming degree of this node.

    returns

    the number of edges that come in to this node including undirected edges. Loops count once each.

  17. abstract def incoming: Set[EdgeT] with FilterableSet[EdgeT]

    Incoming edges of this node.

    Incoming edges of this node.

    returns

    set of all edges incoming to of this including undirected edges.

  18. abstract def incomingFrom(from: NodeT): Set[EdgeT] with FilterableSet[EdgeT]

    All incoming edges connecting from with this node.

    All incoming edges connecting from with this node.

    from

    The node with zero, one or more edges having this node as a direct successor.

    returns

    All edges at from having this node as a direct successor. If from equals this node all hooks are returned. If from is not an adjacent node an empty set is returned.

  19. abstract def isContaining[N, E[+X] <: EdgeLikeIn[X]](g: GraphBase[N, E]): Boolean
    Definition Classes
    InnerNodeParam
  20. abstract def isDirectPredecessorOf(that: NodeT): Boolean

    Whether that is an adjacent (direct successor) to this node.

    Whether that is an adjacent (direct successor) to this node.

    that

    The node to check for adjacency.

    returns

    true if that is adjacent to this node.

  21. abstract def isIndependentOf(that: NodeT): Boolean

    Whether that is independent of this node meaning that there exists no edge connecting this node with that.

    Whether that is independent of this node meaning that there exists no edge connecting this node with that.

    that

    The node to check for independency.

    returns

    true if that node is independent of this node.

  22. abstract def neighbors: Set[NodeT]

    All adjacent nodes (direct successors and predecessors) of this node, also called open neighborhood excluding this node.

    All adjacent nodes (direct successors and predecessors) of this node, also called open neighborhood excluding this node.

    returns

    set of all neighbors.

  23. abstract def outDegree(nodeFilter: NodeFilter, edgeFilter: EdgeFilter = anyEdge, includeHooks: Boolean = false, ignoreMultiEdges: Boolean = true): Int

    The outgoing degree of this node after applying some filters to the outgoing edges and successors.

  24. abstract def outDegree: Int

    The outgoing degree of this node.

    The outgoing degree of this node.

    returns

    the number of edges that go out from this node including undirected edges. Loops count once each.

  25. abstract def outgoing: Set[EdgeT] with FilterableSet[EdgeT]

    All edges outgoing from this node.

    All edges outgoing from this node.

    returns

    set of all edges outgoing from this node including undirected edges and hooks.

  26. abstract def outgoingTo(to: NodeT): Set[EdgeT] with FilterableSet[EdgeT]

    All outgoing edges connecting this node with to.

    All outgoing edges connecting this node with to.

    to

    The node which is the end point of zero, one or more edges starting at this node.

    returns

    All edges connecting this node with to. If to equals this node all hooks are returned. If to is not an adjacent an empty set is returned.

  27. abstract def value: N

    The outer node as supplied at instantiation time or while adding nodes this graph.

    The outer node as supplied at instantiation time or while adding nodes this graph.

    returns

    Reference to the user-supplied outer node.

    Definition Classes
    InnerNodeNodeParam

Concrete Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. def +(other: String): String
    Implicit
    This member is added by an implicit conversion from InnerNode toany2stringadd[InnerNode] performed by method any2stringadd in scala.Predef.
    Definition Classes
    any2stringadd
  4. def ->[B](y: B): (InnerNode, B)
    Implicit
    This member is added by an implicit conversion from InnerNode toArrowAssoc[InnerNode] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  5. final def <~(from: NodeT): Set[EdgeT] with FilterableSet[EdgeT]

    Synonym for incomingFrom.

    Synonym for incomingFrom.

    Annotations
    @inline()
  6. final def <~: Set[EdgeT] with FilterableSet[EdgeT]

    Synonym for incoming.

    Synonym for incoming.

    Annotations
    @inline()
  7. final def <~?(from: NodeT): Option[EdgeT]

    Synonym for findIncomingFrom.

    Synonym for findIncomingFrom.

    Annotations
    @inline()
  8. final def <~|: Set[NodeT]

    Synonym for diPredecessors.

    Synonym for diPredecessors.

    Annotations
    @inline()
  9. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  10. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  11. final def asNodeT[N <: N, E[+X] <: EdgeLikeIn[X], G <: GraphBase[N, E]](g: G): GraphPredef.InnerNodeParam.asNodeT.G.NodeT
    Attributes
    protected[collection]
    Definition Classes
    InnerNodeParam
  12. final def asNodeTProjection[N <: N, E[+X] <: EdgeLikeIn[X]]: NodeT
    Attributes
    protected[collection]
    Definition Classes
    InnerNodeParam
  13. def canEqual(that: Any): Boolean
  14. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native() @HotSpotIntrinsicCandidate()
  15. def ensuring(cond: (InnerNode) => Boolean, msg: => Any): InnerNode
    Implicit
    This member is added by an implicit conversion from InnerNode toEnsuring[InnerNode] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  16. def ensuring(cond: (InnerNode) => Boolean): InnerNode
    Implicit
    This member is added by an implicit conversion from InnerNode toEnsuring[InnerNode] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  17. def ensuring(cond: Boolean, msg: => Any): InnerNode
    Implicit
    This member is added by an implicit conversion from InnerNode toEnsuring[InnerNode] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  18. def ensuring(cond: Boolean): InnerNode
    Implicit
    This member is added by an implicit conversion from InnerNode toEnsuring[InnerNode] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  19. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  20. def equals(other: Any): Boolean
    Definition Classes
    InnerNode → AnyRef → Any
  21. final def fold[N <: N, E[+X] <: EdgeLikeIn[X], G <: GraphBase[N, E], T](g: G)(fa: (GraphPredef.InnerNodeParam.fold.G.NodeT) => T, fb: (NodeT) => T): T
    Definition Classes
    InnerNodeParam
  22. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  23. def hashCode(): Int
    Definition Classes
    InnerNode → AnyRef → Any
  24. final def inNeighbors: Set[NodeT]

    Synonym for diPredecessors.

    Synonym for diPredecessors.

    Annotations
    @inline()
  25. def isDefined: Boolean
    Definition Classes
    Param
  26. final def isEdge: Boolean
    Definition Classes
    Param
  27. def isIn: Boolean
    Definition Classes
    OutParamParam
  28. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  29. final def isIsolated: Boolean

    true if this node's degree equals to 0.

    true if this node's degree equals to 0.

    Annotations
    @inline()
  30. final def isLeaf: Boolean

    true if this node's degree equals to 1.

    true if this node's degree equals to 1.

    Annotations
    @inline()
  31. def isNode: Boolean
    Definition Classes
    NodeParam
  32. final def isOut: Boolean
    Definition Classes
    Param
  33. val n1: InnerNode
    Implicit
    This member is added by an implicit conversion from InnerNode toEdgeAssoc[InnerNode] performed by method EdgeAssoc in scalax.collection.GraphPredef.
    Definition Classes
    EdgeAssoc
  34. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  35. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  36. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  37. final def outNeighbors: Set[NodeT]

    Synonym for diSuccessors.

    Synonym for diSuccessors.

    Annotations
    @inline()
  38. def pipe[B](f: (InnerNode) => B): B
    Implicit
    This member is added by an implicit conversion from InnerNode toChainingOps[InnerNode] performed by method ChainingOps in scalax.collection.
    Definition Classes
    ChainingOps
  39. def productElementNames: Iterator[String]
    Implicit
    This member is added by an implicit conversion from InnerNode toOuterNode[InnerNode] performed by method anyToNode in scalax.collection.GraphPredef.
    Definition Classes
    Product
  40. val self: InnerNode
    Implicit
    This member is added by an implicit conversion from InnerNode toChainingOps[InnerNode] performed by method ChainingOps in scalax.collection.
    Definition Classes
    ChainingOps
  41. def stringPrefix: String
    Definition Classes
    NodeParam
  42. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  43. def tap[U](f: (InnerNode) => U): InnerNode
    Implicit
    This member is added by an implicit conversion from InnerNode toChainingOps[InnerNode] performed by method ChainingOps in scalax.collection.
    Definition Classes
    ChainingOps
  44. final def toNodeT[N <: N, E[+X] <: EdgeLikeIn[X], G <: GraphBase[N, E]](g: G)(f: (NodeT) => GraphPredef.InnerNodeParam.toNodeT.G.NodeT): GraphPredef.InnerNodeParam.toNodeT.G.NodeT
    Definition Classes
    InnerNodeParam
  45. final def toOuter: N

    Synonym for value.

    Synonym for value.

    Annotations
    @inline()
  46. def toString(): String
    Definition Classes
    NodeParam → AnyRef → Any
  47. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  48. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  49. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  50. final def ~: ExtSet[EdgeT]

    Synonym for edges.

    Synonym for edges.

    Annotations
    @inline()
  51. final def ~>(to: NodeT): Set[EdgeT] with FilterableSet[EdgeT]

    Synonym for outgoingTo.

    Synonym for outgoingTo.

    Annotations
    @inline()
  52. final def ~>: Set[EdgeT] with FilterableSet[EdgeT]

    Synonym for outgoing.

    Synonym for outgoing.

    Annotations
    @inline()
  53. final def ~>?(to: NodeT): Option[EdgeT]

    Synonym for findOutgoingTo.

    Synonym for findOutgoingTo.

    Annotations
    @inline()
  54. final def ~>|: Set[NodeT]

    Synonym for diSuccessors.

    Synonym for diSuccessors.

    Annotations
    @inline()
  55. final def ~|: Set[NodeT]

    Synonym for neighbors.

    Synonym for neighbors.

    Annotations
    @inline()

Shadowed Implicit Value Members

  1. def isDefined: Boolean
    Implicit
    This member is added by an implicit conversion from InnerNode toOuterNode[InnerNode] performed by method anyToNode in scalax.collection.GraphPredef.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (innerNode: OuterNode[InnerNode]).isDefined
    Definition Classes
    Param
  2. final def isEdge: Boolean
    Implicit
    This member is added by an implicit conversion from InnerNode toOuterNode[InnerNode] performed by method anyToNode in scalax.collection.GraphPredef.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (innerNode: OuterNode[InnerNode]).isEdge
    Definition Classes
    Param
  3. def isIn: Boolean
    Implicit
    This member is added by an implicit conversion from InnerNode toOuterNode[InnerNode] performed by method anyToNode in scalax.collection.GraphPredef.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (innerNode: OuterNode[InnerNode]).isIn
    Definition Classes
    InParamParam
  4. def isNode: Boolean
    Implicit
    This member is added by an implicit conversion from InnerNode toOuterNode[InnerNode] performed by method anyToNode in scalax.collection.GraphPredef.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (innerNode: OuterNode[InnerNode]).isNode
    Definition Classes
    NodeParam
  5. final def isOut: Boolean
    Implicit
    This member is added by an implicit conversion from InnerNode toOuterNode[InnerNode] performed by method anyToNode in scalax.collection.GraphPredef.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (innerNode: OuterNode[InnerNode]).isOut
    Definition Classes
    Param
  6. def stringPrefix: String
    Implicit
    This member is added by an implicit conversion from InnerNode toOuterNode[InnerNode] performed by method anyToNode in scalax.collection.GraphPredef.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (innerNode: OuterNode[InnerNode]).stringPrefix
    Definition Classes
    NodeParam
  7. def toString(): String
    Implicit
    This member is added by an implicit conversion from InnerNode toOuterNode[InnerNode] performed by method anyToNode in scalax.collection.GraphPredef.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (innerNode: OuterNode[InnerNode]).toString()
    Definition Classes
    NodeParam → AnyRef → Any
  8. val value: InnerNode
    Implicit
    This member is added by an implicit conversion from InnerNode toOuterNode[InnerNode] performed by method anyToNode in scalax.collection.GraphPredef.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (innerNode: OuterNode[InnerNode]).value
    Definition Classes
    OuterNodeNodeParam
  9. def ~[N >: N1](n2: N): UnDiEdge[N]
    Implicit
    This member is added by an implicit conversion from InnerNode toEdgeAssoc[InnerNode] performed by method EdgeAssoc in scalax.collection.GraphPredef.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (innerNode: EdgeAssoc[InnerNode]).~(n2)
    Definition Classes
    EdgeAssoc
    Annotations
    @inline()
  10. def ~>[N >: N1](n2: N): DiEdge[N]
    Implicit
    This member is added by an implicit conversion from InnerNode toEdgeAssoc[InnerNode] performed by method EdgeAssoc in scalax.collection.GraphPredef.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (innerNode: EdgeAssoc[InnerNode]).~>(n2)
    Definition Classes
    EdgeAssoc
    Annotations
    @inline()

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable]) @Deprecated
    Deprecated
  2. def formatted(fmtstr: String): String
    Implicit
    This member is added by an implicit conversion from InnerNode toStringFormat[InnerNode] 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): (InnerNode, B)
    Implicit
    This member is added by an implicit conversion from InnerNode toArrowAssoc[InnerNode] 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 InnerElem

Inherited from Node

Inherited from Serializable

Inherited from InnerNodeParam[N]

Inherited from NodeParam[N]

Inherited from OutParam[N, Nothing]

Inherited from Param[N, Nothing]

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion EdgeAssoc fromInnerNode to EdgeAssoc[InnerNode]

Inherited by implicit conversion anyToNode fromInnerNode to OuterNode[InnerNode]

Inherited by implicit conversion ChainingOps fromInnerNode to ChainingOps[InnerNode]

Inherited by implicit conversion any2stringadd fromInnerNode to any2stringadd[InnerNode]

Inherited by implicit conversion StringFormat fromInnerNode to StringFormat[InnerNode]

Inherited by implicit conversion Ensuring fromInnerNode to Ensuring[InnerNode]

Inherited by implicit conversion ArrowAssoc fromInnerNode to ArrowAssoc[InnerNode]

Ungrouped