Package org.lionsoul.jcseg.util
Class IHashQueue.Entry<T>
- java.lang.Object
-
- org.lionsoul.jcseg.util.IHashQueue.Entry<T>
-
- Enclosing class:
- IHashQueue<T extends IWord>
public static class IHashQueue.Entry<T> extends Object
innner Entry node class- Author:
- chenxin
-
-
Field Summary
Fields Modifier and Type Field Description TdataIHashQueue.Entry<T>nextIHashQueue.Entry<T>prev
-
Constructor Summary
Constructors Constructor Description Entry(T data, IHashQueue.Entry<T> prev, IHashQueue.Entry<T> next)
-
-
-
Field Detail
-
data
public T data
-
prev
public IHashQueue.Entry<T> prev
-
next
public IHashQueue.Entry<T> next
-
-
Constructor Detail
-
Entry
public Entry(T data, IHashQueue.Entry<T> prev, IHashQueue.Entry<T> next)
-
-