public class CollectionFactory
extends java.lang.Object
CollectionFactory.forObjectContainer(objectContainer).newBigSet();| Modifier and Type | Method and Description |
|---|---|
static CollectionFactory |
forObjectContainer(ObjectContainer objectContainer)
returns a collection factory for an ObjectContainer
|
<E> java.util.Set<E> |
newBigSet()
creates a new BigSet.
Characteristics of BigSet: - It is optimized by using a BTree of IDs of persistent objects. - It can only hold persistent first class objects (no primitives, no strings, no objects that are not persistent) - Objects are activated upon getting them from the BigSet. |
public static CollectionFactory forObjectContainer(ObjectContainer objectContainer)
objectContainer - - the ObjectContainerpublic <E> java.util.Set<E> newBigSet()