Packages

implicit final class TransactionTreeOps extends AnyVal

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

Instance Constructors

  1. new TransactionTreeOps(tree: TransactionTree)

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 childNodeIds(exercised: ExercisedEvent): List[Int]

    Computes the children nodes of an exercised event.

    Computes the children nodes of an exercised event. It finds the candidate nodes that could be children of the event given (i.e. its descendants). Then it repeatedly finds from the candidates the one with the lowest id and adds it to its children and removes the child's descendants from the list with the candidates. A node can be considered a child of another node if there are not any intermediate descendants between its parent and itself. There is no guarantee that the child was a child of its parent in the original transaction tree (i.e. before filtering out events from the original transaction tree).

    exercised

    the exercised event

    returns

    the children's node ids

  6. def getClass(): Class[_ <: AnyVal]
    Definition Classes
    AnyVal → Any
  7. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  8. def rootNodeIds(): List[Int]

    Computes the node ids of the root nodes (i.e.

    Computes the node ids of the root nodes (i.e. the nodes that do not have any ancestors). A node can be considered a root if there are not any ancestors of it. There is no guarantee that the root node was also a root in the original transaction tree (i.e. before filtering out events from the original transaction tree).

    returns

    the root node ids

  9. def toString(): String
    Definition Classes
    Any
  10. val tree: TransactionTree

Inherited from AnyVal

Inherited from Any

Ungrouped