Package net.eternalclient.api.rs
Interface RSNodeDeque
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
addFirst(RSNode val)
void
addLast(RSNode val)
void
clear()
clear the dequeRSNode
getCurrent()
RSNode
getSentinel()
java.util.Iterator
iterator()
RSNode
last()
RSNode
previous()
RSNode
removeLast()
-
-
-
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:RSDeque
clear the deque
-
iterator
java.util.Iterator iterator()
- Specified by:
iterator
in interfacejava.lang.Iterable
-
-