|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectorg.apache.hadoop.hive.ql.exec.persistence.DCLLItem
public class DCLLItem
Doubly circular linked list item.
Method Summary | |
---|---|
DCLLItem |
getNext()
Get the next item. |
DCLLItem |
getPrev()
Get the previous item. |
void |
insertAfter(DCLLItem v)
Add v as the previous of the current list item. |
void |
insertBefore(DCLLItem v)
Add v as the previous of the current list item. |
void |
remove()
Remove the current item from the doubly circular linked list. |
void |
setNext(DCLLItem itm)
Set the next item as itm. |
void |
setPrev(DCLLItem itm)
Set the previous item as itm. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Method Detail |
---|
public DCLLItem getNext()
public DCLLItem getPrev()
public void setNext(DCLLItem itm)
itm
- the item to be set as next.public void setPrev(DCLLItem itm)
itm
- the item to be set as previous.public void remove()
public void insertBefore(DCLLItem v)
v
- inserted item.public void insertAfter(DCLLItem v)
v
- inserted item.
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |