|
JUtil | ||||||||
PREV NEXT | FRAMES NO FRAMES |
Uses of SetFactory in net.cscott.jutil |
---|
Subclasses of SetFactory in net.cscott.jutil | |
---|---|
class |
AggregateSetFactory<V>
AggregateSetFactory uses a single HashMap
as backing store for the many smaller Set s created
by this SetFactory . |
class |
BitSetFactory<V>
BitSetFactory is a SetFactory that,
given a complete universe of possible values, produces low space
overhead representations of Set s. |
class |
PersistentSetFactory<T>
A PersistentSetFactory uses hash-consing to ensure that
the Set s created by it maximally reuse space. |
Fields in net.cscott.jutil declared as SetFactory | |
---|---|
static SetFactory |
Factories.hashSetFactory
A SetFactory that generates HashSet s. |
static SetFactory |
Factories.linearSetFactory
A SetFactory that generates
LinearSet s backed by ArrayList s. |
static SetFactory |
Factories.linkedHashSetFactory
A SetFactory that generates LinkedHashSet s. |
static SetFactory |
Factories.treeSetFactory
A SetFactory that generates TreeSet s. |
static SetFactory |
Factories.workSetFactory
A SetFactory that generates WorkSet s. |
Methods in net.cscott.jutil that return SetFactory | ||
---|---|---|
static
|
Factories.enumSetFactory(Class<V> enumClass)
A SetFactory that generates EnumSet s. |
|
static
|
Factories.hashSetFactory()
|
|
static
|
Factories.linearSetFactory()
|
|
static
|
Factories.linkedHashSetFactory()
|
|
static
|
Factories.mapSetFactory(MapFactory<K,V> mf)
Returns a SetFactory that generates MapSet
views of maps generated by the given MapFactory . |
|
static
|
Factories.multiMapSetFactory(MultiMapFactory<K,V> mf)
Returns a SetFactory that generates
MultiMapSet views of MultiMap s
generated by the given MultiMapFactory . |
|
static
|
Factories.synchronizedSetFactory(SetFactory<V> sf)
Returns a SetFactory that generates synchronized
(thread-safe) Set s. |
|
static
|
Factories.treeSetFactory()
|
|
static
|
Factories.workSetFactory()
|
Methods in net.cscott.jutil with parameters of type SetFactory | ||
---|---|---|
static
|
Factories.synchronizedSetFactory(SetFactory<V> sf)
Returns a SetFactory that generates synchronized
(thread-safe) Set s. |
|
JUtil | ||||||||
PREV NEXT | FRAMES NO FRAMES |