Class SimpleCharStream
java.lang.Object
org.apache.commons.jexl2.parser.SimpleCharStream
An implementation of interface CharStream, where the stream is assumed to
contain only ASCII characters (without unicode processing).
-
Field Summary
FieldsModifier and TypeFieldDescriptionprotected int[]protected char[]protected int[]intPosition in buffer.protected intprotected intprotected Readerprotected intprotected intprotected booleanprotected booleanstatic final booleanWhether parser is static.protected intprotected boolean -
Constructor Summary
ConstructorsConstructorDescriptionSimpleCharStream(InputStream dstream) Constructor.SimpleCharStream(InputStream dstream, int startline, int startcolumn) Constructor.SimpleCharStream(InputStream dstream, int startline, int startcolumn, int buffersize) Constructor.SimpleCharStream(InputStream dstream, String encoding) Constructor.SimpleCharStream(InputStream dstream, String encoding, int startline, int startcolumn) Constructor.SimpleCharStream(InputStream dstream, String encoding, int startline, int startcolumn, int buffersize) Constructor.SimpleCharStream(Reader dstream) Constructor.SimpleCharStream(Reader dstream, int startline, int startcolumn) Constructor.SimpleCharStream(Reader dstream, int startline, int startcolumn, int buffersize) Constructor. -
Method Summary
Modifier and TypeMethodDescriptionvoidadjustBeginLineColumn(int newLine, int newCol) Method to adjust line and column numbers for the start of a token.voidbackup(int amount) Backup a number of characters.charStart.voidDone()Reset buffer when finished.protected voidExpandBuff(boolean wrapAround) protected voidFillBuff()intGet token beginning column number.intGet token beginning line number.intDeprecated.intGet token end column number.intGet token end line number.GetImage()Get token literal value.intgetLine()Deprecated.char[]GetSuffix(int len) Get the suffix.intcharreadChar()Read a character.voidReInit(InputStream dstream) Reinitialise.voidReInit(InputStream dstream, int startline, int startcolumn) Reinitialise.voidReInit(InputStream dstream, int startline, int startcolumn, int buffersize) Reinitialise.voidReInit(InputStream dstream, String encoding) Reinitialise.voidReInit(InputStream dstream, String encoding, int startline, int startcolumn) Reinitialise.voidReInit(InputStream dstream, String encoding, int startline, int startcolumn, int buffersize) Reinitialise.voidReinitialise.voidReinitialise.voidReinitialise.voidsetTabSize(int i) protected voidUpdateLineColumn(char c)
-
Field Details
-
staticFlag
-
bufpos
Position in buffer. -
bufline
-
bufcolumn
-
column
-
line
-
prevCharIsCR
-
prevCharIsLF
-
inputStream
-
buffer
-
maxNextCharInd
-
inBuf
-
tabSize
-
trackLineColumn
-
-
Constructor Details
-
SimpleCharStream
Constructor. -
SimpleCharStream
Constructor. -
SimpleCharStream
Constructor. -
SimpleCharStream
public SimpleCharStream(InputStream dstream, String encoding, int startline, int startcolumn, int buffersize) throws UnsupportedEncodingException Constructor.- Throws:
UnsupportedEncodingException
-
SimpleCharStream
Constructor. -
SimpleCharStream
public SimpleCharStream(InputStream dstream, String encoding, int startline, int startcolumn) throws UnsupportedEncodingException Constructor.- Throws:
UnsupportedEncodingException
-
SimpleCharStream
Constructor. -
SimpleCharStream
Constructor.- Throws:
UnsupportedEncodingException
-
SimpleCharStream
Constructor.
-
-
Method Details
-
setTabSize
-
getTabSize
-
ExpandBuff
-
FillBuff
- Throws:
IOException
-
BeginToken
-
UpdateLineColumn
-
readChar
-
getColumn
-
getLine
-
getEndColumn
Get token end column number. -
getEndLine
Get token end line number. -
getBeginColumn
Get token beginning column number. -
getBeginLine
Get token beginning line number. -
backup
Backup a number of characters. -
ReInit
-
ReInit
-
ReInit
-
ReInit
public void ReInit(InputStream dstream, String encoding, int startline, int startcolumn, int buffersize) throws UnsupportedEncodingException Reinitialise.- Throws:
UnsupportedEncodingException
-
ReInit
Reinitialise. -
ReInit
Reinitialise.- Throws:
UnsupportedEncodingException
-
ReInit
Reinitialise. -
ReInit
public void ReInit(InputStream dstream, String encoding, int startline, int startcolumn) throws UnsupportedEncodingException Reinitialise.- Throws:
UnsupportedEncodingException
-
ReInit
Reinitialise. -
GetImage
-
GetSuffix
Get the suffix. -
Done
Reset buffer when finished. -
adjustBeginLineColumn
Method to adjust line and column numbers for the start of a token.
-