Package net.eternalclient.api.rs
Interface RSNodeDeque
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidaddFirst(RSNode val)voidaddLast(RSNode val)voidclear()clear the dequeRSNodegetCurrent()RSNodegetSentinel()java.util.Iteratoriterator()RSNodelast()RSNodeprevious()RSNoderemoveLast()
-
-
-
Method Detail
-
getCurrent
RSNode getCurrent()
-
getSentinel
RSNode getSentinel()
-
last
RSNode last()
-
previous
RSNode previous()
-
addFirst
void addFirst(RSNode val)
-
addLast
void addLast(RSNode val)
-
removeLast
RSNode removeLast()
-
clear
void clear()
Description copied from interface:RSDequeclear the deque
-
iterator
java.util.Iterator iterator()
- Specified by:
iteratorin interfacejava.lang.Iterable
-
-