Package opennlp.tools.chunker
Class ChunkerFactory
- java.lang.Object
-
- opennlp.tools.util.BaseToolFactory
-
- opennlp.tools.chunker.ChunkerFactory
-
- Direct Known Subclasses:
ParserChunkerFactory
public class ChunkerFactory extends BaseToolFactory
-
-
Constructor Summary
Constructors Constructor Description ChunkerFactory()
Creates aChunkerFactory
that provides the default implementation of the resources.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ChunkerFactory
create(String subclassName)
ChunkerContextGenerator
getContextGenerator()
SequenceValidator<TokenTag>
getSequenceValidator()
void
validateArtifactMap()
Validates the parsed artifacts.-
Methods inherited from class opennlp.tools.util.BaseToolFactory
create, create, createArtifactMap, createArtifactSerializersMap, createManifestEntries
-
-
-
-
Constructor Detail
-
ChunkerFactory
public ChunkerFactory()
Creates aChunkerFactory
that provides the default implementation of the resources.
-
-
Method Detail
-
create
public static ChunkerFactory create(String subclassName) throws InvalidFormatException
- Throws:
InvalidFormatException
-
validateArtifactMap
public void validateArtifactMap() throws InvalidFormatException
Description copied from class:BaseToolFactory
Validates the parsed artifacts. If something is not valid subclasses should throw anInvalidFormatException
. Note: Subclasses should generally invoke super.validateArtifactMap at the beginning of this method.- Specified by:
validateArtifactMap
in classBaseToolFactory
- Throws:
InvalidFormatException
-
getSequenceValidator
public SequenceValidator<TokenTag> getSequenceValidator()
-
getContextGenerator
public ChunkerContextGenerator getContextGenerator()
-
-