Package opennlp.tools.tokenize
Class TokenSample
- java.lang.Object
-
- opennlp.tools.tokenize.TokenSample
-
- All Implemented Interfaces:
Serializable
public class TokenSample extends Object implements Serializable
ATokenSample
is text with token spans.- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description static String
DEFAULT_SEPARATOR_CHARS
-
Constructor Summary
Constructors Constructor Description TokenSample(String text, Span[] tokenSpans)
Initializes the current instance.TokenSample(Detokenizer detokenizer, String[] tokens)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object obj)
String
getText()
Retrieves the text.Span[]
getTokenSpans()
Retrieves the token spans.int
hashCode()
static TokenSample
parse(String sampleString, String separatorChars)
String
toString()
-
-
-
Field Detail
-
DEFAULT_SEPARATOR_CHARS
public static final String DEFAULT_SEPARATOR_CHARS
- See Also:
- Constant Field Values
-
-
Constructor Detail
-
TokenSample
public TokenSample(String text, Span[] tokenSpans)
Initializes the current instance.- Parameters:
text
- the text which contains the tokens.tokenSpans
- the spans which mark the begin and end of the tokens.
-
TokenSample
public TokenSample(Detokenizer detokenizer, String[] tokens)
-
-
Method Detail
-
getText
public String getText()
Retrieves the text.
-
getTokenSpans
public Span[] getTokenSpans()
Retrieves the token spans.
-
parse
public static TokenSample parse(String sampleString, String separatorChars)
-
-