Package opennlp.tools.chunker
Class ChunkerFactory
java.lang.Object
opennlp.tools.util.BaseToolFactory
opennlp.tools.chunker.ChunkerFactory
- Direct Known Subclasses:
ParserChunkerFactory
-
Constructor Summary
ConstructorDescriptionCreates aChunkerFactory
that provides the default implementation of the resources. -
Method Summary
Modifier and TypeMethodDescriptionstatic ChunkerFactory
Instantiates aChunkerFactory
via a givensubclassName
.void
Validates the parsed artifacts.Methods inherited from class opennlp.tools.util.BaseToolFactory
create, create, createArtifactMap, createArtifactSerializersMap, createManifestEntries
-
Constructor Details
-
ChunkerFactory
public ChunkerFactory()Creates aChunkerFactory
that provides the default implementation of the resources.
-
-
Method Details
-
create
Instantiates aChunkerFactory
via a givensubclassName
.- Parameters:
subclassName
- The class name used for instantiation. Ifnull
, an instance ofChunkerFactory
will be returned per default. Otherwise, theExtensionLoader
mechanism is applied to load the requestedsubclassName
.- Returns:
- A valid
ChunkerFactory
instance. - Throws:
InvalidFormatException
- Thrown if theExtensionLoader
mechanism failed to create the factory associated withsubclassName
.
-
validateArtifactMap
Description copied from class:BaseToolFactory
Validates the parsed artifacts.Note: Subclasses should generally invoke
super.validateArtifactMap
at the beginning of this method.- Specified by:
validateArtifactMap
in classBaseToolFactory
- Throws:
InvalidFormatException
- Thrown if validation found invalid states.
-
getSequenceValidator
-
getContextGenerator
-