public class CircularBuffer4<T> extends java.lang.Object implements Iterable4<T>
CircularBuffer4(int size)
void
addFirst(T value)
boolean
contains(T value)
isEmpty()
isFull()
Iterator4
iterator()
remove(T value)
T
removeFirst()
removeLast()
int
size()
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
public CircularBuffer4(int size)
public int size()
public void addFirst(T value)
public T removeLast()
public boolean isEmpty()
public boolean isFull()
public T removeFirst()
public boolean remove(T value)
public boolean contains(T value)
public Iterator4 iterator()
iterator
Iterable4<T>