Class: LinkedListEvent

LinkedListEvent(node, add, first, last)

new LinkedListEvent(node, add, first, last)

Parameters:
Name Type Description
node LinkedListNode.<T>
add Boolean True, if the node was added. If false, the node was removed.
first Boolean True, iff the node is the first node now
last Boolean True, iff the node is the last node now
Source:

Extends

Members

added :Boolean

Returns whether this represents an add-event.
Type:
  • Boolean
Source:

firstNode :Boolean

Returns whether the node is the first now.
Type:
  • Boolean
Source:

item :LinkedListNode.<T>

Type:
Source:

lastNode :Boolean

Returns whether the node is the last now.
Type:
  • Boolean
Source:

removed :Boolean

Returns whether this represents a remove-event.
Type:
  • Boolean
Source: