Package com.inductiveautomation.rm.base
Class RMStringTokenizer
java.lang.Object
com.inductiveautomation.rm.base.RMStringTokenizer
A string tokenizer that can provide token location.
- 
Nested Class SummaryNested Classes
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionReturns the next token.intReturns the next token start.Returns the next string.Returns the string being processed.getToken()Returns the current token.intReturns the current token end.intReturns the current token start.Returns the current string.booleanReturns whether tokenizer has more tokens.protected voidLoads the next token.
- 
Constructor Details- 
RMStringTokenizerCreates a new string tokenizer.
 
- 
- 
Method Details- 
getStringReturns the string being processed.
- 
getTokenStartpublic int getTokenStart()Returns the current token start.
- 
getTokenEndpublic int getTokenEnd()Returns the current token end.
- 
getTokenStringReturns the current string.
- 
getNextTokenStringReturns the next string.
- 
getTokenReturns the current token.
- 
getNextTokenReturns the next token.
- 
hasMoreTokenspublic boolean hasMoreTokens()Returns whether tokenizer has more tokens.
- 
getNextTokenStartpublic int getNextTokenStart()Returns the next token start.
- 
loadNextTokenprotected void loadNextToken()Loads the next token.
 
-