public class CircularList<T> extends Object implements Iterable<T>
CircularList(int size)
void
add(T o)
clear()
T
get(int index)
int
getBufferSize()
boolean
isEmpty()
Iterator<T>
iterator()
resize(int newsize)
size()
List<T>
toList()
String
toString()
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
public CircularList(int size)
public void resize(int newsize)
public boolean isEmpty()
public int size()
public int getBufferSize()
public T get(int index)
public void add(T o)
public void clear()
public List<T> toList()
public String toString()
toString
Object
public Iterator<T> iterator()
iterator
Iterable<T>
Copyright © 2000-2014 Apache Software Foundation. All Rights Reserved.