Class UCode_UCodeESC_CharStream
- java.lang.Object
-
- org.kohsuke.rngom.rngparser.parse.compact.UCode_UCodeESC_CharStream
-
public final class UCode_UCodeESC_CharStream extends java.lang.Object
An implementation of interface CharStream, where the stream is assumed to contain 16-bit unicode characters.
-
-
Field Summary
Fields Modifier and Type Field Description int
bufpos
static boolean
staticFlag
-
Constructor Summary
Constructors Constructor Description UCode_UCodeESC_CharStream(java.io.InputStream dstream, int startline, int startcolumn)
UCode_UCodeESC_CharStream(java.io.InputStream dstream, int startline, int startcolumn, int buffersize)
UCode_UCodeESC_CharStream(java.io.Reader dstream, int startline, int startcolumn)
UCode_UCodeESC_CharStream(java.io.Reader dstream, int startline, int startcolumn, int buffersize)
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description void
adjustBeginLineColumn(int newLine, int newCol)
Method to adjust line and column numbers for the start of a token.void
backup(int amount)
char
BeginToken()
void
Done()
int
getBeginColumn()
int
getBeginLine()
int
getColumn()
Deprecated.int
getEndColumn()
int
getEndLine()
java.lang.String
GetImage()
int
getLine()
Deprecated.char[]
GetSuffix(int len)
char
readChar()
void
ReInit(java.io.InputStream dstream, int startline, int startcolumn)
void
ReInit(java.io.InputStream dstream, int startline, int startcolumn, int buffersize)
void
ReInit(java.io.Reader dstream, int startline, int startcolumn)
void
ReInit(java.io.Reader dstream, int startline, int startcolumn, int buffersize)
-
-
-
Field Detail
-
staticFlag
public static final boolean staticFlag
- See Also:
- Constant Field Values
-
bufpos
public int bufpos
-
-
Constructor Detail
-
UCode_UCodeESC_CharStream
public UCode_UCodeESC_CharStream(java.io.Reader dstream, int startline, int startcolumn, int buffersize)
-
UCode_UCodeESC_CharStream
public UCode_UCodeESC_CharStream(java.io.Reader dstream, int startline, int startcolumn)
-
UCode_UCodeESC_CharStream
public UCode_UCodeESC_CharStream(java.io.InputStream dstream, int startline, int startcolumn, int buffersize)
-
UCode_UCodeESC_CharStream
public UCode_UCodeESC_CharStream(java.io.InputStream dstream, int startline, int startcolumn)
-
-
Method Detail
-
BeginToken
public final char BeginToken() throws EOFException
- Throws:
EOFException
-
readChar
public final char readChar() throws EOFException
- Throws:
EOFException
-
getColumn
public final int getColumn()
Deprecated.- See Also:
getEndColumn()
-
getLine
public final int getLine()
Deprecated.- See Also:
getEndLine()
-
getEndColumn
public final int getEndColumn()
-
getEndLine
public final int getEndLine()
-
getBeginColumn
public final int getBeginColumn()
-
getBeginLine
public final int getBeginLine()
-
backup
public final 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.InputStream dstream, int startline, int startcolumn, int buffersize)
-
ReInit
public void ReInit(java.io.InputStream dstream, int startline, int startcolumn)
-
GetImage
public final java.lang.String GetImage()
-
GetSuffix
public final 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.
-
-