Represents a node that can be part of a list with statistical collecting. More...
Public Member Functions | |
| Node (E element, double insertionTime) | |
| Constructs a new node containing element element inserted into the list at time insertionTime. | |
| E | getElement () |
| Returns the element stored into this node. | |
| double | getInsertionTime () |
| Returns the insertion time of the element in this node. | |
Represents a node that can be part of a list with statistical collecting.
Definition at line 509 of file ListWithStat.java.
| umontreal.ssj.simevents.ListWithStat< E >.Node< E >.Node | ( | E | element, |
| double | insertionTime ) |
Constructs a new node containing element element inserted into the list at time insertionTime.
| element | the element to add into this new node |
| insertionTime | the insertion time of the element |
Definition at line 524 of file ListWithStat.java.
| E umontreal.ssj.simevents.ListWithStat< E >.Node< E >.getElement | ( | ) |
Returns the element stored into this node.
Definition at line 534 of file ListWithStat.java.
| double umontreal.ssj.simevents.ListWithStat< E >.Node< E >.getInsertionTime | ( | ) |
Returns the insertion time of the element in this node.
Definition at line 543 of file ListWithStat.java.