Package opennlp.uima.normalizer
Klasse StringDictionary
java.lang.Object
opennlp.uima.normalizer.StringDictionary
-
Konstruktorübersicht
-
Methodenübersicht
Modifizierer und TypMethodeBeschreibungget
(StringList key) Retrieves a value from a dictionary via itskey
.void
put
(StringList key, String value) Adds a new entry to the dictionary.void
serialize
(OutputStream out) Writes the dictionary to the givenOutputStream
.
-
Konstruktordetails
-
StringDictionary
public StringDictionary() -
StringDictionary
InitializesStringDictionary
via a specifiedInputStream
.- Parameter:
in
- A valid, openInputStream
to initialize with.- Löst aus:
IOException
- Thrown if IO errors occurred.
-
-
Methodendetails
-
get
Retrieves a value from a dictionary via itskey
.- Parameter:
key
- Thekey
to get value with.- Gibt zurück:
- Retrieves a corresponding String value or
null
if not found.
-
put
Adds a new entry to the dictionary.- Parameter:
key
- Thekey
under which to put thevalue
.value
- The value to put.
-
serialize
Writes the dictionary to the givenOutputStream
.- Parameter:
out
- A valid, openOutputStream
to serialize to.- Löst aus:
IOException
- Thrown if IO errors occurred during serialization.
-