|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectorg.egothor.cache.fifo.FifoEntry<T>
T
- type of the stored value.public class FifoEntry<T>
Represents an entry in a linked list that can store a value.
Field Summary | |
---|---|
protected FifoEntry<T> |
next
Entry that is next after this entry in a linked list. |
protected FifoEntry<T> |
prev
Entry that precedes this entry in a linked list. |
T |
value
Value stored by the entry |
Constructor Summary | |
---|---|
FifoEntry(T value)
Constructor for the FifoEntry object. |
Method Summary |
---|
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
---|
protected FifoEntry<T> prev
protected FifoEntry<T> next
public T value
Constructor Detail |
---|
public FifoEntry(T value)
value
- value stored by the entry
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |