|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectcom.hp.hpl.jena.util.CollectionFactory
public class CollectionFactory
CollectionFactory - a central place for allocating sets and maps, mostly so that it's easy to plug in new implementations (eg trove).
| Constructor Summary | |
|---|---|
CollectionFactory()
|
|
| Method Summary | |
|---|---|
static Map |
createHashedMap()
Answer a new Map which uses hashing for lookup. |
static Map |
createHashedMap(int size)
Answer a new Map which uses hashing for lookup and has initial size size. |
static Map |
createHashedMap(Map toCopy)
Answer a new Map which uses hashing for lookup and is initialised to be a copy of toCopy. |
static Set |
createHashedSet()
Answer a new Set which uses haashing for lookup. |
static Set |
createHashedSet(Collection toCopy)
Answer a new Set which uses hashing for lookup and is initialised as a copy of toCopy. |
| Methods inherited from class java.lang.Object |
|---|
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Constructor Detail |
|---|
public CollectionFactory()
| Method Detail |
|---|
public static Map createHashedMap()
public static Map createHashedMap(int size)
size.
public static Map createHashedMap(Map toCopy)
toCopy.
public static Set createHashedSet()
public static Set createHashedSet(Collection toCopy)
toCopy.
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||