Interface LinkedListSetItem<I>
- All Known Implementing Classes:
StrictLinkedListSet.LinkedListItemImpl
public interface LinkedListSetItem<I>
Item copied out of a
LinkedListSet.- Author:
- Daniel Sagenschneider
-
Method Summary
Modifier and TypeMethodDescriptiongetEntry()Obtains theLinkedListSetEntrycopied out of theLinkedListSet.getNext()Obtains the nextLinkedListSetItemcopied out of theLinkedListSet.
-
Method Details
-
getEntry
I getEntry()Obtains theLinkedListSetEntrycopied out of theLinkedListSet.- Returns:
LinkedListSetEntrycopied out of theLinkedListSet.
-
getNext
LinkedListSetItem<I> getNext()Obtains the nextLinkedListSetItemcopied out of theLinkedListSet.- Returns:
- Next
LinkedListSetItemcopied out of theLinkedListSet.
-