Package opennlp.tools.tokenize
Class WhitespaceTokenizer
- java.lang.Object
-
- opennlp.tools.tokenize.WhitespaceTokenizer
-
-
Field Summary
Fields Modifier and Type Field Description static WhitespaceTokenizer
INSTANCE
Use this static reference to retrieve an instance of theWhitespaceTokenizer
.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
setKeepNewLines(boolean keepNewLines)
String[]
tokenize(String s)
Splits a string into its atomic partsSpan[]
tokenizePos(String d)
Finds the boundaries of atomic parts in a string.
-
-
-
Field Detail
-
INSTANCE
public static final WhitespaceTokenizer INSTANCE
Use this static reference to retrieve an instance of theWhitespaceTokenizer
.
-
-
Method Detail
-
tokenizePos
public Span[] tokenizePos(String d)
Description copied from interface:Tokenizer
Finds the boundaries of atomic parts in a string.- Parameters:
d
- The string to be tokenized.- Returns:
- The Span[] with the spans (offsets into s) for each token as the individuals array elements.
-
tokenize
public String[] tokenize(String s)
Description copied from interface:Tokenizer
Splits a string into its atomic parts
-
setKeepNewLines
public void setKeepNewLines(boolean keepNewLines)
-
-