Class AbstractLinkedListSetEntry<E extends LinkedListSetEntry<E,O>,O>
java.lang.Object
net.officefloor.frame.impl.execute.linkedlistset.AbstractLinkedListSetEntry<E,O>
- All Implemented Interfaces:
LinkedListSetEntry<E,O>
- Direct Known Subclasses:
AbstractDelegateFunctionState,AbstractFunctionState,AssetLatchImpl,AssetManagerImpl,FlowImpl,ManagedFunctionContainerImpl,ThreadProfilerImpl,ThreadStateImpl
public abstract class AbstractLinkedListSetEntry<E extends LinkedListSetEntry<E,O>,O>
extends Object
implements LinkedListSetEntry<E,O>
Abstract
LinkedListSetEntry.- Author:
- Daniel Sagenschneider
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionfinal EgetNext()Obtains the nextLinkedListSetEntryin theLinkedListSet.final EgetPrev()Obtains the previousLinkedListSetEntryin theLinkedListSet.final voidSpecifies the nextLinkedListSetEntryin theLinkedListSet.final voidSpecifies the previousLinkedListSetEntryin theLinkedListSet.Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface net.officefloor.frame.internal.structure.LinkedListSetEntry
getLinkedListSetOwner
-
Constructor Details
-
AbstractLinkedListSetEntry
public AbstractLinkedListSetEntry()
-
-
Method Details
-
getPrev
Description copied from interface:LinkedListSetEntryObtains the previous
LinkedListSetEntryin theLinkedListSet.Should this
LinkedListSetEntrynot be in aLinkedListSetthen this must returnnull.- Specified by:
getPrevin interfaceLinkedListSetEntry<E extends LinkedListSetEntry<E,O>, O> - Returns:
- Previous
LinkedListSetEntryin theLinkedListSet.
-
setPrev
Description copied from interface:LinkedListSetEntrySpecifies the previousLinkedListSetEntryin theLinkedListSet.- Specified by:
setPrevin interfaceLinkedListSetEntry<E extends LinkedListSetEntry<E,O>, O> - Parameters:
entry- PreviousLinkedListSetEntryin theLinkedListSet.
-
getNext
Description copied from interface:LinkedListSetEntryObtains the next
LinkedListSetEntryin theLinkedListSet.Should this
LinkedListSetEntrynot be in aLinkedListSetthen this must returnnull.- Specified by:
getNextin interfaceLinkedListSetEntry<E extends LinkedListSetEntry<E,O>, O> - Returns:
- Next
LinkedListSetEntryin theLinkedListSet.
-
setNext
Description copied from interface:LinkedListSetEntrySpecifies the nextLinkedListSetEntryin theLinkedListSet.- Specified by:
setNextin interfaceLinkedListSetEntry<E extends LinkedListSetEntry<E,O>, O> - Parameters:
entry- NextLinkedListSetEntryin theLinkedListSet.
-