Package opennlp.tools.util
Klasse BaseToolFactory
java.lang.Object
opennlp.tools.util.BaseToolFactory
- Bekannte direkte Unterklassen:
ChunkerFactory
,DoccatFactory
,LanguageDetectorFactory
,LemmatizerFactory
,POSTaggerFactory
,SentenceDetectorFactory
,TokenizerFactory
,TokenNameFinderFactory
Base class for all tool
factories
.
Extensions of this class should:
- implement an empty constructor,
- implement a constructor that takes the
ArtifactProvider
}, - override
createArtifactMap()
andcreateArtifactSerializersMap()
methods if necessary.
-
Konstruktorübersicht
Konstruktoren -
Methodenübersicht
Modifizierer und TypMethodeBeschreibungstatic BaseToolFactory
create
(Class<? extends BaseToolFactory> factoryClass, ArtifactProvider artifactProvider) Instantiates aBaseToolFactory
via a givensubclassName
.static BaseToolFactory
create
(String subclassName, ArtifactProvider artifactProvider) Instantiates aBaseToolFactory
via a givensubclassName
.A model's implementation should call this constructor that creates a model programmatically.Creates aMap
with pairs of keys andArtifactSerializer
.abstract void
Validates the parsed artifacts.
-
Konstruktordetails
-
BaseToolFactory
public BaseToolFactory()All subclasses should have an empty constructor
-
-
Methodendetails
-
createArtifactSerializersMap
Creates aMap
with pairs of keys andArtifactSerializer
. The models implementation should call this method fromBaseModel#createArtifactSerializersMap
.The base implementation will return a
HashMap
that should be populated by subclasses. -
createArtifactMap
A model's implementation should call this constructor that creates a model programmatically.The base implementation will return a
HashMap
that should be populated by subclasses.- Gibt zurück:
- Retrieves a
Map
with pairs of keys and objects.
-
createManifestEntries
- Gibt zurück:
- Retrieves the manifest entries to be added to the model manifest.
-
validateArtifactMap
Validates the parsed artifacts.Note: Subclasses should generally invoke
super.validateArtifactMap
at the beginning of this method.- Löst aus:
InvalidFormatException
- Thrown if validation found invalid states.
-
create
public static BaseToolFactory create(String subclassName, ArtifactProvider artifactProvider) throws InvalidFormatException Instantiates aBaseToolFactory
via a givensubclassName
.- Parameter:
subclassName
- The class name used for instantiation. TheExtensionLoader
mechanism is applied to load the requestedsubclassName
.artifactProvider
- TheArtifactProvider
to be used.- Gibt zurück:
- A valid
BaseToolFactory
instance. - Löst aus:
InvalidFormatException
- Thrown if theExtensionLoader
mechanism failed to create the factory associated withsubclassName
.
-
create
public static BaseToolFactory create(Class<? extends BaseToolFactory> factoryClass, ArtifactProvider artifactProvider) throws InvalidFormatException Instantiates aBaseToolFactory
via a givensubclassName
.- Parameter:
factoryClass
- The class used for instantiation. The no-arg constructor of that class will be used to create and init the resulting object.artifactProvider
- TheArtifactProvider
to be used.- Gibt zurück:
- A valid
BaseToolFactory
instance. - Löst aus:
InvalidFormatException
- Thrown if theExtensionLoader
mechanism failed to create the factory associated withsubclassName
.
-