Package org.apache.felix.gogo.runtime
Class BaseTokenizer
- java.lang.Object
-
- org.apache.felix.gogo.runtime.BaseTokenizer
-
-
Constructor Summary
Constructors Constructor Description BaseTokenizer(java.lang.CharSequence text)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected boolean
eot()
protected char
escape()
protected void
find(char target, char deeper)
protected char
getch()
protected char
getch(boolean peek)
protected boolean
isBlank(char ch)
protected char
peek()
protected void
skipQuote()
protected void
skipSpace()
protected void
skipSpace(boolean skipNewLines)
Token
text()
-
-
-
Field Detail
-
EOT
protected static final char EOT
- See Also:
- Constant Field Values
-
text
protected final Token text
-
line
protected short line
-
column
protected short column
-
ch
protected char ch
-
index
protected int index
-
-
Method Detail
-
text
public Token text()
-
find
protected void find(char target, char deeper)
-
escape
protected char escape()
-
skipQuote
protected void skipQuote()
-
skipSpace
protected void skipSpace()
-
skipSpace
protected void skipSpace(boolean skipNewLines)
-
isBlank
protected boolean isBlank(char ch)
-
eot
protected boolean eot()
-
getch
protected char getch()
-
peek
protected char peek()
-
getch
protected char getch(boolean peek)
-
-