Class DefaultCharStream
java.lang.Object
tech.units.indriya.internal.format.DefaultCharStream
An implementation of interface CharStream, where the stream is assumed to contain only ASCII characters (without unicode processing).
- Version:
- 5.2, April 26, 2018
-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate intprotected int[]protected char[]protected int[]intPosition in buffer.private intprotected intprotected intprotected Readerprotected intprotected intprotected booleanprotected booleanstatic final booleanWhether parser is static.protected intprivate int -
Constructor Summary
ConstructorsConstructorDescriptionDefaultCharStream(InputStream dstream) Constructor.DefaultCharStream(InputStream dstream, int startline, int startcolumn) Constructor.DefaultCharStream(InputStream dstream, int startline, int startcolumn, int buffersize) Constructor.DefaultCharStream(InputStream dstream, String encoding) Constructor.DefaultCharStream(InputStream dstream, String encoding, int startline, int startcolumn) Constructor.DefaultCharStream(InputStream dstream, String encoding, int startline, int startcolumn, int buffersize) Constructor.DefaultCharStream(Reader dstream) Constructor.DefaultCharStream(Reader dstream, int startline, int startcolumn) Constructor.DefaultCharStream(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.protected 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.protected voidsetTabSize(int i) protected voidupdateLineColumn(char c)
-
Field Details
-
staticFlag
public static final boolean staticFlagWhether parser is static.- See Also:
-
bufsize
private int bufsize -
available
private int available -
tokenBegin
private int tokenBegin -
bufpos
public int bufposPosition in buffer. -
bufline
protected int[] bufline -
bufcolumn
protected int[] bufcolumn -
column
protected int column -
line
protected int line -
prevCharIsCR
protected boolean prevCharIsCR -
prevCharIsLF
protected boolean prevCharIsLF -
inputStream
-
buffer
protected char[] buffer -
maxNextCharInd
protected int maxNextCharInd -
inBuf
protected int inBuf -
tabSize
protected int tabSize
-
-
Constructor Details
-
DefaultCharStream
Constructor. -
DefaultCharStream
Constructor. -
DefaultCharStream
Constructor. -
DefaultCharStream
public DefaultCharStream(InputStream dstream, String encoding, int startline, int startcolumn, int buffersize) throws UnsupportedEncodingException Constructor.- Throws:
UnsupportedEncodingException
-
DefaultCharStream
Constructor. -
DefaultCharStream
public DefaultCharStream(InputStream dstream, String encoding, int startline, int startcolumn) throws UnsupportedEncodingException Constructor.- Throws:
UnsupportedEncodingException
-
DefaultCharStream
Constructor. -
DefaultCharStream
Constructor.- Throws:
UnsupportedEncodingException
-
DefaultCharStream
Constructor.
-
-
Method Details
-
setTabSize
protected void setTabSize(int i) -
getTabSize
protected int getTabSize() -
expandBuff
protected void expandBuff(boolean wrapAround) -
fillBuff
- Throws:
IOException
-
beginToken
-
updateLineColumn
protected void updateLineColumn(char c) -
readChar
-
getColumn
Deprecated. -
getLine
Deprecated. -
getEndColumn
public int getEndColumn()Get token end column number. -
getEndLine
public int getEndLine()Get token end line number. -
getBeginColumn
public int getBeginColumn()Get token beginning column number. -
getBeginLine
public int getBeginLine()Get token beginning line number. -
backup
public void backup(int amount) 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
public char[] GetSuffix(int len) Get the suffix. -
done
public void done()Reset buffer when finished. -
adjustBeginLineColumn
public void adjustBeginLineColumn(int newLine, int newCol) Method to adjust line and column numbers for the start of a token.
-