|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectedu.stanford.nlp.util.MapFactory<K,V>
public abstract class MapFactory<K,V>
A factory class for vending different sorts of Maps.
Field Summary | |
---|---|
static MapFactory |
ARRAY_MAP_FACTORY
|
static MapFactory |
HASH_MAP_FACTORY
|
static MapFactory |
IDENTITY_HASH_MAP_FACTORY
|
static MapFactory |
TREE_MAP_FACTORY
|
static MapFactory |
WEAK_HASH_MAP_FACTORY
|
Method Summary | ||
---|---|---|
abstract Map<K,V> |
newMap()
Returns a new non-parameterized map of a particular sort. |
|
abstract Map<K,V> |
newMap(int initCapacity)
Returns a new non-parameterized map of a particular sort with an initial capacity. |
|
abstract
|
setMap(Map<K1,V1> map)
A method to get a parameterized (genericized) map out. |
|
abstract
|
setMap(Map<K1,V1> map,
int initCapacity)
|
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
---|
public static final MapFactory HASH_MAP_FACTORY
public static final MapFactory IDENTITY_HASH_MAP_FACTORY
public static final MapFactory WEAK_HASH_MAP_FACTORY
public static final MapFactory TREE_MAP_FACTORY
public static final MapFactory ARRAY_MAP_FACTORY
Method Detail |
---|
public abstract Map<K,V> newMap()
public abstract Map<K,V> newMap(int initCapacity)
initCapacity
- initial capacity of the map
public abstract <K1,V1> Map<K1,V1> setMap(Map<K1,V1> map)
map
- A type-parameterized Map
argument
Map
with type-parameterization identical to that of
the argument.public abstract <K1,V1> Map<K1,V1> setMap(Map<K1,V1> map, int initCapacity)
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |