类 JavaCharStream
- java.lang.Object
-
- org.meteoinfo.console.JavaCharStream
-
public class JavaCharStream extends java.lang.ObjectAn implementation of interface CharStream, where the stream is assumed to contain only ASCII characters (with java-like unicode escape processing).
-
-
字段概要
字段 修饰符和类型 字段 说明 protected int[]bufcolumnprotected char[]bufferprotected int[]buflineintbufposprotected intcolumnprotected intinBufprotected java.io.ReaderinputStreamprotected intlineprotected intmaxNextCharIndprotected char[]nextCharBufprotected intnextCharIndprotected booleanprevCharIsCRprotected booleanprevCharIsLFstatic booleanstaticFlag
-
构造器概要
构造器 构造器 说明 JavaCharStream(java.io.InputStream dstream)JavaCharStream(java.io.InputStream dstream, int startline, int startcolumn)JavaCharStream(java.io.InputStream dstream, int startline, int startcolumn, int buffersize)JavaCharStream(java.io.Reader dstream)JavaCharStream(java.io.Reader dstream, int startline, int startcolumn)JavaCharStream(java.io.Reader dstream, int startline, int startcolumn, int buffersize)
-
方法概要
所有方法 实例方法 具体方法 已过时的方法 修饰符和类型 方法 说明 voidadjustBeginLineColumn(int newLine, int newCol)Method to adjust line and column numbers for the start of a token.protected voidAdjustBuffSize()voidbackup(int amount)charBeginToken()voidDone()protected voidExpandBuff(boolean wrapAround)protected voidFillBuff()intgetBeginColumn()intgetBeginLine()intgetColumn()已过时。intgetEndColumn()intgetEndLine()java.lang.StringGetImage()intgetLine()已过时。char[]GetSuffix(int len)protected charReadByte()charreadChar()voidReInit(java.io.InputStream dstream)voidReInit(java.io.InputStream dstream, int startline, int startcolumn)voidReInit(java.io.InputStream dstream, int startline, int startcolumn, int buffersize)voidReInit(java.io.Reader dstream)voidReInit(java.io.Reader dstream, int startline, int startcolumn)voidReInit(java.io.Reader dstream, int startline, int startcolumn, int buffersize)protected voidUpdateLineColumn(char c)
-
-
-
字段详细资料
-
staticFlag
public static final boolean staticFlag
- 另请参阅:
- 常量字段值
-
bufpos
public int bufpos
-
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
protected java.io.Reader inputStream
-
nextCharBuf
protected char[] nextCharBuf
-
buffer
protected char[] buffer
-
maxNextCharInd
protected int maxNextCharInd
-
nextCharInd
protected int nextCharInd
-
inBuf
protected int inBuf
-
-
构造器详细资料
-
JavaCharStream
public JavaCharStream(java.io.Reader dstream, int startline, int startcolumn, int buffersize)
-
JavaCharStream
public JavaCharStream(java.io.Reader dstream, int startline, int startcolumn)
-
JavaCharStream
public JavaCharStream(java.io.Reader dstream)
-
JavaCharStream
public JavaCharStream(java.io.InputStream dstream, int startline, int startcolumn, int buffersize)
-
JavaCharStream
public JavaCharStream(java.io.InputStream dstream, int startline, int startcolumn)
-
JavaCharStream
public JavaCharStream(java.io.InputStream dstream)
-
-
方法详细资料
-
ExpandBuff
protected void ExpandBuff(boolean wrapAround)
-
FillBuff
protected void FillBuff() throws java.io.IOException- 抛出:
java.io.IOException
-
ReadByte
protected char ReadByte() throws java.io.IOException- 抛出:
java.io.IOException
-
BeginToken
public char BeginToken() throws java.io.IOException- 抛出:
java.io.IOException
-
AdjustBuffSize
protected void AdjustBuffSize()
-
UpdateLineColumn
protected void UpdateLineColumn(char c)
-
readChar
public char readChar() throws java.io.IOException- 抛出:
java.io.IOException
-
getColumn
public int getColumn()
已过时。- 返回:
- Column
- 另请参阅:
getEndColumn()
-
getLine
public int getLine()
已过时。- 返回:
- Line
- 另请参阅:
getEndLine()
-
getEndColumn
public int getEndColumn()
-
getEndLine
public int getEndLine()
-
getBeginColumn
public int getBeginColumn()
-
getBeginLine
public int getBeginLine()
-
backup
public void backup(int amount)
-
ReInit
public void ReInit(java.io.Reader dstream, int startline, int startcolumn, int buffersize)
-
ReInit
public void ReInit(java.io.Reader dstream, int startline, int startcolumn)
-
ReInit
public void ReInit(java.io.Reader dstream)
-
ReInit
public void ReInit(java.io.InputStream dstream, int startline, int startcolumn, int buffersize)
-
ReInit
public void ReInit(java.io.InputStream dstream, int startline, int startcolumn)
-
ReInit
public void ReInit(java.io.InputStream dstream)
-
GetImage
public java.lang.String GetImage()
-
GetSuffix
public char[] GetSuffix(int len)
-
Done
public void Done()
-
adjustBeginLineColumn
public void adjustBeginLineColumn(int newLine, int newCol)Method to adjust line and column numbers for the start of a token.- 参数:
newLine-newCol-
-
-