gr.demokritos.iit.jinsect.algorithms.nlp
Interface IDelimiterEvaluator
public interface IDelimiterEvaluator
Describes an evaluator that can determine delimiter characters in a given string.
|
Method Summary |
boolean |
isDelimiter(int iPos,
java.lang.String sStr)
Checks whether the character in a given position of a given string is a delimiter. |
isDelimiter
boolean isDelimiter(int iPos,
java.lang.String sStr)
- Checks whether the character in a given position of a given string is a delimiter.
- Parameters:
iPos - The position to check.sStr - The used string.
- Returns:
- True if the given character is a delimiter, else false.