Package org.apache.log4j.chainsaw
Class CyclicBufferList
- java.lang.Object
-
- java.util.AbstractCollection<E>
-
- java.util.AbstractList
-
- org.apache.log4j.chainsaw.CyclicBufferList
-
- All Implemented Interfaces:
java.lang.Iterable,java.util.Collection,java.util.List
public class CyclicBufferList extends java.util.AbstractList implements java.util.ListCyclicBuffer implementation that is Object generic, and implements the List interface.Original CyclicBuffer @author Ceki Gülcü
This implementation (although there's very little change) @author Paul Smith <psmith@apache.org>
-
-
Constructor Summary
Constructors Constructor Description CyclicBufferList()CyclicBufferList(int maxSize)Instantiate a new CyclicBuffer of at mostmaxSizeevents.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanadd(java.lang.Object event)Add aneventas the last event in the buffer.voidclear()java.lang.Objectget()Get the oldest (first) element in the buffer.java.lang.Objectget(int i)Get the ith oldest event currently in the buffer.intgetLast()intgetMaxSize()java.lang.Objectremove(int index)Removes the element at the specified position in this list.voidresize(int newSize)Resize the cyclic buffer tonewSize.java.lang.Objectset(int index, java.lang.Object element)intsize()Get the number of elements in the buffer.-
Methods inherited from class java.util.AbstractList
add, addAll, equals, hashCode, indexOf, iterator, lastIndexOf, listIterator, listIterator, removeRange, subList
-
Methods inherited from class java.util.AbstractCollection
addAll, contains, containsAll, isEmpty, remove, removeAll, retainAll, toArray, toArray, toString
-
-
-
-
Method Detail
-
remove
public java.lang.Object remove(int index)
Removes the element at the specified position in this list. Shifts any subsequent elements to the left (subtracts one from their indices).- Specified by:
removein interfacejava.util.List- Overrides:
removein classjava.util.AbstractList- Parameters:
index- the index of the element to removed.- Returns:
- the element that was removed from the list.
- Throws:
java.lang.IndexOutOfBoundsException- if index out of range (index < 0 || index >= size()).
-
set
public java.lang.Object set(int index, java.lang.Object element)- Specified by:
setin interfacejava.util.List- Overrides:
setin classjava.util.AbstractList
-
add
public boolean add(java.lang.Object event)
Add aneventas the last event in the buffer.- Specified by:
addin interfacejava.util.Collection- Specified by:
addin interfacejava.util.List- Overrides:
addin classjava.util.AbstractList
-
get
public java.lang.Object get(int i)
Get the ith oldest event currently in the buffer. If i is outside the range 0 to the number of elements currently in the buffer, thennullis returned.- Specified by:
getin interfacejava.util.List- Specified by:
getin classjava.util.AbstractList
-
getMaxSize
public int getMaxSize()
-
getLast
public int getLast()
-
get
public java.lang.Object get()
Get the oldest (first) element in the buffer. The oldest element is removed from the buffer.
-
size
public int size()
Get the number of elements in the buffer. This number is guaranteed to be in the range 0 tomaxSize(inclusive).- Specified by:
sizein interfacejava.util.Collection- Specified by:
sizein interfacejava.util.List- Specified by:
sizein classjava.util.AbstractCollection
-
resize
public void resize(int newSize)
Resize the cyclic buffer tonewSize.- Throws:
java.lang.IllegalArgumentException- ifnewSizeis negative.
-
clear
public void clear()
- Specified by:
clearin interfacejava.util.Collection- Specified by:
clearin interfacejava.util.List- Overrides:
clearin classjava.util.AbstractList
-
-