|
JUtil | ||||||||
| PREV NEXT | FRAMES NO FRAMES | ||||||||
| Uses of ListFactory in net.cscott.jutil |
|---|
| Fields in net.cscott.jutil declared as ListFactory | |
|---|---|
static ListFactory |
Factories.arrayListFactory
Returns a ListFactory that generates
ArrayLists. |
static ListFactory |
Factories.linkedListFactory
A ListFactory that generates LinkedLists. |
| Methods in net.cscott.jutil that return ListFactory | ||
|---|---|---|
static
|
Factories.arrayListFactory()
|
|
static
|
Factories.linkedListFactory()
|
|
static
|
Factories.synchronizedListFactory(ListFactory<V> lf)
Returns a ListFactory that generates synchronized
(thread-safe) Lists. |
|
| Methods in net.cscott.jutil with parameters of type ListFactory | ||
|---|---|---|
static
|
Factories.synchronizedListFactory(ListFactory<V> lf)
Returns a ListFactory that generates synchronized
(thread-safe) Lists. |
|
| Constructors in net.cscott.jutil with parameters of type ListFactory | |
|---|---|
LinearSet(ListFactory<E> lf)
Creates an empty LinearSet, using a
List generated by lf as the backing
store. |
|
LinearSet(ListFactory<E> lf,
int capacity)
Creates an empty LinearSet with a given capacity,
using a List generated by lf as the
backing store. |
|
LinearSet(ListFactory<E> lf,
Set<? extends E> set)
Creates an empty LinearSet, using a
List generated by lf as the backing
store, and fills it with the elements of set. |
|
|
JUtil | ||||||||
| PREV NEXT | FRAMES NO FRAMES | ||||||||