Package org.drools.core.util
Class LinkedListEntry<T1 extends LinkedListNode<T1>,T2>
- java.lang.Object
-
- org.drools.core.util.AbstractBaseLinkedListNode<T1>
-
- org.drools.core.util.LinkedListEntry<T1,T2>
-
- All Implemented Interfaces:
Externalizable,Serializable,Entry<T1>,LinkedListNode<T1>
public class LinkedListEntry<T1 extends LinkedListNode<T1>,T2> extends AbstractBaseLinkedListNode<T1> implements Externalizable
The idea behindLinkedListNodeWrapperis to be able to add the sameLinkedListNodeto multipleLinkedLists where the node can have different previous and next nodes in each list.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description LinkedListEntry()LinkedListEntry(T2 object)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(Object other)T2getObject()inthashCode()voidreadExternal(ObjectInput in)voidsetObject(T2 object)voidwriteExternal(ObjectOutput out)-
Methods inherited from class org.drools.core.util.AbstractBaseLinkedListNode
getNext, getPrevious, nullPrevNext, setNext, setPrevious
-
-
-
-
Constructor Detail
-
LinkedListEntry
public LinkedListEntry()
-
LinkedListEntry
public LinkedListEntry(T2 object)
-
-
Method Detail
-
readExternal
public void readExternal(ObjectInput in) throws IOException, ClassNotFoundException
- Specified by:
readExternalin interfaceExternalizable- Throws:
IOExceptionClassNotFoundException
-
writeExternal
public void writeExternal(ObjectOutput out) throws IOException
- Specified by:
writeExternalin interfaceExternalizable- Throws:
IOException
-
getObject
public T2 getObject()
-
setObject
public void setObject(T2 object)
-
-