Package opennlp.tools.tokenize
Class SimpleTokenizer
- java.lang.Object
-
- opennlp.tools.tokenize.SimpleTokenizer
-
-
Field Summary
Fields Modifier and Type Field Description static SimpleTokenizerINSTANCE
-
Constructor Summary
Constructors Constructor Description SimpleTokenizer()Deprecated.Use INSTANCE field instead to obtain an instance, constructor will be made private in the future.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidsetKeepNewLines(boolean keepNewLines)String[]tokenize(String s)Splits a string into its atomic partsSpan[]tokenizePos(String s)Finds the boundaries of atomic parts in a string.
-
-
-
Field Detail
-
INSTANCE
public static final SimpleTokenizer INSTANCE
-
-
Constructor Detail
-
SimpleTokenizer
@Deprecated public SimpleTokenizer()
Deprecated.Use INSTANCE field instead to obtain an instance, constructor will be made private in the future.
-
-
Method Detail
-
tokenizePos
public Span[] tokenizePos(String s)
Description copied from interface:TokenizerFinds the boundaries of atomic parts in a string.- Parameters:
s- 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:TokenizerSplits a string into its atomic parts
-
setKeepNewLines
public void setKeepNewLines(boolean keepNewLines)
-
-