java.lang.Object
org.apache.jena.cdt.parser.JavaCharStream
An implementation of interface CharStream, where the stream is assumed to
contain only ASCII characters (with java-like unicode escape processing).
-
Field Summary
Modifier and TypeFieldDescriptionint
static final boolean
Whether parser is static. -
Constructor Summary
ConstructorDescriptionJavaCharStream
(InputStream dstream) Constructor.JavaCharStream
(InputStream dstream, int startline, int startcolumn) Constructor.JavaCharStream
(InputStream dstream, int startline, int startcolumn, int buffersize) Constructor.JavaCharStream
(InputStream dstream, String encoding) Constructor.JavaCharStream
(InputStream dstream, String encoding, int startline, int startcolumn) Constructor.JavaCharStream
(InputStream dstream, String encoding, int startline, int startcolumn, int buffersize) Constructor.JavaCharStream
(Reader dstream) Constructor.JavaCharStream
(Reader dstream, int startline, int startcolumn) Constructor.JavaCharStream
(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) Retreat.char
void
Done()
Set buffers back to null when finished.int
Get the beginning column.int
int
Deprecated.int
Get end column.int
Get end line.GetImage()
Get the token timage.int
getLine()
Deprecated.char[]
GetSuffix
(int len) Get the suffix as an array of characters.int
char
readChar()
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
void
void
void
setTabSize
(int i)
-
Field Details
-
staticFlag
public static final boolean staticFlagWhether parser is static.- See Also:
-
bufpos
public int bufpos
-
-
Constructor Details
-
JavaCharStream
Constructor.- Parameters:
dstream
- the underlying data source.startline
- line number of the first character of the stream, mostly for error messages.startcolumn
- column number of the first character of the stream.buffersize
- size of the buffer
-
JavaCharStream
Constructor.- Parameters:
dstream
- the underlying data source.startline
- line number of the first character of the stream, mostly for error messages.startcolumn
- column number of the first character of the stream.
-
JavaCharStream
Constructor.- Parameters:
dstream
- the underlying data source.
-
JavaCharStream
public JavaCharStream(InputStream dstream, String encoding, int startline, int startcolumn, int buffersize) throws UnsupportedEncodingException Constructor.- Throws:
UnsupportedEncodingException
-
JavaCharStream
Constructor.- Parameters:
dstream
- the underlying data source.startline
- line number of the first character of the stream, mostly for error messages.startcolumn
- column number of the first character of the stream.buffersize
- size of the buffer
-
JavaCharStream
public JavaCharStream(InputStream dstream, String encoding, int startline, int startcolumn) throws UnsupportedEncodingException Constructor.- Parameters:
dstream
- the underlying data source.encoding
- the character encoding of the data stream.startline
- line number of the first character of the stream, mostly for error messages.startcolumn
- column number of the first character of the stream.- Throws:
UnsupportedEncodingException
- encoding is invalid or unsupported.
-
JavaCharStream
Constructor.- Parameters:
dstream
- the underlying data source.startline
- line number of the first character of the stream, mostly for error messages.startcolumn
- column number of the first character of the stream.
-
JavaCharStream
Constructor.- Parameters:
dstream
- the underlying data source.encoding
- the character encoding of the data stream.- Throws:
UnsupportedEncodingException
- encoding is invalid or unsupported.
-
JavaCharStream
Constructor.- Parameters:
dstream
- the underlying data source.
-
-
Method Details
-
setTabSize
public void setTabSize(int i) -
getTabSize
public int getTabSize() -
BeginToken
- Throws:
IOException
-
readChar
- Throws:
IOException
-
getColumn
Deprecated. -
getLine
Deprecated. -
getEndColumn
public int getEndColumn()Get end column.- Returns:
- the end column or -1
-
getEndLine
public int getEndLine()Get end line.- Returns:
- the end line number or -1
-
getBeginColumn
public int getBeginColumn()Get the beginning column.- Returns:
- column of token start
-
getBeginLine
public int getBeginLine()- Returns:
- line number of token start
-
backup
public void backup(int amount) Retreat. -
ReInit
-
ReInit
-
ReInit
-
ReInit
public void ReInit(InputStream dstream, String encoding, int startline, int startcolumn, int buffersize) throws UnsupportedEncodingException Reinitialise.- Parameters:
dstream
- the underlying data source.encoding
- the character encoding of the data stream.startline
- line number of the first character of the stream, mostly for error messages.startcolumn
- column number of the first character of the stream.buffersize
- size of the buffer- Throws:
UnsupportedEncodingException
-
ReInit
Reinitialise.- Parameters:
dstream
- the underlying data source.startline
- line number of the first character of the stream, mostly for error messages.startcolumn
- column number of the first character of the stream.buffersize
- size of the buffer
-
ReInit
public void ReInit(InputStream dstream, String encoding, int startline, int startcolumn) throws UnsupportedEncodingException Reinitialise.- Parameters:
dstream
- the underlying data source.encoding
- the character encoding of the data stream.startline
- line number of the first character of the stream, mostly for error messages.startcolumn
- column number of the first character of the stream.- Throws:
UnsupportedEncodingException
- encoding is invalid or unsupported.
-
ReInit
Reinitialise.- Parameters:
dstream
- the underlying data source.startline
- line number of the first character of the stream, mostly for error messages.startcolumn
- column number of the first character of the stream.
-
ReInit
Reinitialise.- Parameters:
dstream
- the underlying data source.encoding
- the character encoding of the data stream.- Throws:
UnsupportedEncodingException
- encoding is invalid or unsupported.
-
ReInit
Reinitialise.- Parameters:
dstream
- the underlying data source.
-
GetImage
Get the token timage.- Returns:
- token image as String
-
GetSuffix
public char[] GetSuffix(int len) Get the suffix as an array of characters.- Parameters:
len
- the length of the array to return.- Returns:
- suffix
-
Done
public void Done()Set buffers back to null when finished. -
adjustBeginLineColumn
public void adjustBeginLineColumn(int newLine, int newCol) Method to adjust line and column numbers for the start of a token.- Parameters:
newLine
- the new line number.newCol
- the new column number.
-