Class SimpleCharStream
java.lang.Object
org.apache.commons.configuration2.plist.SimpleCharStream
An implementation of interface CharStream, where the stream is assumed to
contain only ASCII characters (without unicode processing).
-
Field Summary
Modifier and TypeFieldDescriptionprotected int[]
protected char[]
protected int[]
int
Position in buffer.protected int
protected int
protected Reader
protected int
protected int
protected boolean
protected boolean
static final boolean
Whether parser is static.protected int
-
Constructor Summary
ConstructorDescriptionSimpleCharStream
(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 TypeMethodDescriptionvoid
adjustBeginLineColumn
(int newLine, int newCol) Method to adjust line and column numbers for the start of a token.void
backup
(int amount) Backup a number of characters.char
Start.void
Done()
Reset buffer when finished.protected void
ExpandBuff
(boolean wrapAround) protected void
FillBuff()
int
Get token beginning column number.int
Get token beginning line number.int
Deprecated.int
Get token end column number.int
Get token end line number.GetImage()
Get token literal value.int
getLine()
Deprecated.char[]
GetSuffix
(int len) Get the suffix.protected int
getTabSize
(int i) char
readChar()
Read a character.void
ReInit
(InputStream dstream) Reinitialise.void
ReInit
(InputStream dstream, int startline, int startcolumn) Reinitialise.void
ReInit
(InputStream dstream, int startline, int startcolumn, int buffersize) Reinitialise.void
ReInit
(InputStream dstream, String encoding) Reinitialise.void
ReInit
(InputStream dstream, String encoding, int startline, int startcolumn) Reinitialise.void
ReInit
(InputStream dstream, String encoding, int startline, int startcolumn, int buffersize) Reinitialise.void
Reinitialise.void
Reinitialise.void
Reinitialise.protected void
setTabSize
(int i) protected void
UpdateLineColumn
(char c)
-
Field Details
-
staticFlag
Whether parser is static.- See Also:
-
bufpos
Position in buffer. -
bufline
-
bufcolumn
-
column
-
line
-
prevCharIsCR
-
prevCharIsLF
-
inputStream
-
buffer
-
maxNextCharInd
-
inBuf
-
tabSize
-
-
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
Start.- Throws:
IOException
-
UpdateLineColumn
-
readChar
Read a character.- Throws:
IOException
-
getColumn
Deprecated. -
getLine
Deprecated. -
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
Reinitialise. -
ReInit
Reinitialise. -
ReInit
Reinitialise. -
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
Get token literal value. -
GetSuffix
Get the suffix. -
Done
Reset buffer when finished. -
adjustBeginLineColumn
Method to adjust line and column numbers for the start of a token.
-