edu.stanford.nlp.util
Class CollectionFactory
java.lang.Object
edu.stanford.nlp.util.CollectionFactory
- Direct Known Subclasses:
- CollectionFactory.ArrayListFactory, CollectionFactory.HashSetFactory
- public abstract class CollectionFactory
- extends Object
Factory for vending Collections. It's a class instead of an interface because I guessed that it'd primarily be used for its inner classes.
- Author:
- Dan Klein (klein@cs.stanford.edu)
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
ARRAY_LIST_FACTORY
public static final CollectionFactory ARRAY_LIST_FACTORY
HASH_SET_FACTORY
public static final CollectionFactory HASH_SET_FACTORY
CollectionFactory
public CollectionFactory()
newCollection
public abstract Collection newCollection()
newEmptyCollection
public abstract Collection newEmptyCollection()
Stanford NLP Group