| java.lang.Object workbench.util.FixedSizeList
FixedSizeList | public class FixedSizeList (Code) | | author: support@sql-workbench.net |
Method Summary | |
public synchronized int | addEntry(T entry) | public synchronized void | append(T entry) Append an entry at the end of the list, without
checking for duplicates or removing entries
that exceed the max size. | public synchronized List<T> | getEntries() | public synchronized T | getFirst() | public Iterator | iterator() | public synchronized int | size() | public synchronized String | toString() |
FixedSizeList | public FixedSizeList()(Code) | | |
FixedSizeList | public FixedSizeList(int max)(Code) | | |
addEntry | public synchronized int addEntry(T entry)(Code) | | |
append | public synchronized void append(T entry)(Code) | | Append an entry at the end of the list, without
checking for duplicates or removing entries
that exceed the max size. This should be used
to initially fill the list.
|
getEntries | public synchronized List<T> getEntries()(Code) | | |
getFirst | public synchronized T getFirst()(Code) | | |
size | public synchronized int size()(Code) | | |
|
|