Package | Description |
---|---|
net.sf.mmm.util.collection.api |
Provides the API for utilities that help to dealing with
Collections . |
net.sf.mmm.util.collection.base |
Contains public implementations of the
Collection-Util API . |
net.sf.mmm.util.collection.impl |
Contains implementations of the
Collection-Util API . |
net.sf.mmm.util.event.base |
Contains the abstract base-implementation of the
event-handling API . |
Modifier and Type | Interface and Description |
---|---|
interface |
BlockingQueueFactory
|
interface |
DequeFactory
|
interface |
ListFactory
|
interface |
NavigableSetFactory
|
interface |
QueueFactory
|
interface |
SetFactory
|
interface |
SortedSetFactory
|
Modifier and Type | Method and Description |
---|---|
<COLLECTION extends Collection> |
CollectionFactoryManager.getCollectionFactory(Class<COLLECTION> collectionType)
This method gets the
CollectionFactory for the given collectionType . |
Modifier and Type | Class and Description |
---|---|
class |
AbstractBlockingQueueFactory
This is the abstract base implementation of the
BlockingQueueFactory interface. |
class |
AbstractDequeFactory
This is the abstract base implementation of the
DequeFactory interface. |
class |
AbstractListFactory
This is the abstract base implementation of the
ListFactory interface. |
class |
AbstractNavigableSetFactory
This is the abstract base implementation of the
NavigableSetFactory interface. |
class |
AbstractQueueFactory
This is the abstract base implementation of the
QueueFactory interface. |
class |
AbstractSetFactory
This is the abstract base implementation of the
SetFactory interface. |
class |
AbstractSortedSetFactory
This is the abstract base implementation of the
SortedSetFactory interface. |
class |
ArrayListFactory
This is an implementation of the
ListFactory interface that creates instances
of ArrayList . |
class |
ConcurrentHashSetFactory
This is an implementation of
ConcurrentMapFactory that creates instances of a
ConcurrentHashSet . |
class |
ConcurrentLinkedQueueFactory
This is an implementation of the
QueueFactory interface that creates instances
of ConcurrentLinkedQueue . |
class |
HashSetFactory
This is an implementation of the
SetFactory interface that creates instances
of HashSet . |
class |
LinkedBlockingQueueFactory
This is an implementation of the
BlockingQueueFactory interface that creates
instances of LinkedBlockingQueue . |
class |
LinkedListDequeFactory
This is an implementation of the
DequeFactory interface that creates instances
of LinkedList . |
class |
LinkedListQueueFactory
This is an implementation of the
QueueFactory interface that creates instances
of LinkedList . |
class |
NavigableTreeSetFactory
This is an implementation of the
NavigableSetFactory interface that creates
instances of TreeSet . |
class |
TreeSetFactory
This is an implementation of the
SortedSetFactory interface that creates
instances of TreeSet . |
Modifier and Type | Field and Description |
---|---|
private Map<Class<? extends Collection>,CollectionFactory> |
CollectionFactoryManagerImpl.collectionFactoryMap |
Modifier and Type | Method and Description |
---|---|
<C extends Collection> |
CollectionFactoryManagerImpl.getCollectionFactory(Class<C> collectionType) |
protected CollectionFactory |
CollectionFactoryManagerImpl.registerCollectionFactory(CollectionFactory factory)
This method registers the given
factory using its collection-interface . |
protected <COLLECTION extends Collection> |
CollectionFactoryManagerImpl.registerCollectionFactory(CollectionFactory<? extends COLLECTION> factory,
Class<COLLECTION> collectionInterface)
This method registers the given
factory for the given collectionInterface . |
Modifier and Type | Method and Description |
---|---|
protected CollectionFactory |
CollectionFactoryManagerImpl.registerCollectionFactory(CollectionFactory factory)
This method registers the given
factory using its collection-interface . |
protected <COLLECTION extends Collection> |
CollectionFactoryManagerImpl.registerCollectionFactory(CollectionFactory<? extends COLLECTION> factory,
Class<COLLECTION> collectionInterface)
This method registers the given
factory for the given collectionInterface . |
Modifier and Type | Field and Description |
---|---|
private CollectionFactory<?> |
AbstractEventBus.queueFactory |
Constructor and Description |
---|
AbstractEventSource(CollectionFactory<? extends Collection> collectionFactory)
The constructor.
|
EventDispatcher(AbstractEventBus.EventDispatcher<? super E> parent,
CollectionFactory<?> collectionFactory)
The constructor.
|
Copyright © 2001–2016 mmm-Team. All rights reserved.