Interface CharStream
-
- All Known Implementing Classes:
StringCharStream
public interface CharStream
-
-
Field Summary
Fields Modifier and Type Field Description static intEOIA special value for the values returned bypeek()andpeekRead(char)indicating end-of-input.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleanatEoi()voideoi()intpeek()Returns the next character on this stream but does not consume it.booleanpeek(char c)Returns whether the character stream is not at end-of-input and the next character on this stream equals the given character.intpeek(java.lang.String chars)Checks whether the next character on this stream equals any of the characters of the givenString.booleanpeekRead(char c)If the next character on this stream equals the given character, it is consumed.intpeekRead(java.lang.String chars)If the next character on this stream is in the givenString, it is consumed.charread()Consumes and returns the next character on this stream.voidread(char c)Consumes the next character on this stream and verifies that it equals the given character.intread(java.lang.String chars)Consumes the nect character and verifies that it matches one of the characters of the givenString.
-
-
-
Field Detail
-
EOI
static final int EOI
A special value for the values returned bypeek()andpeekRead(char)indicating end-of-input.- See Also:
- Constant Field Values
-
-
Method Detail
-
peek
int peek() throws java.io.IOException
Returns the next character on this stream but does not consume it.- Returns:
EOIThis stream is at end-of-input- Throws:
java.io.IOException
-
peek
boolean peek(char c) throws java.io.IOExceptionReturns whether the character stream is not at end-of-input and the next character on this stream equals the given character. Does not consume any characters.- Throws:
java.io.IOException
-
peek
int peek(java.lang.String chars) throws java.io.IOException
Checks whether the next character on this stream equals any of the characters of the givenString. Does not consume any characters.- Returns:
- The position of the next character in the given
String, or -1 - Throws:
java.io.IOException
-
read
char read() throws java.io.EOFException, java.io.IOExceptionConsumes and returns the next character on this stream.- Throws:
java.io.EOFException- This stream is at end-of-inputjava.io.IOException
-
read
void read(char c) throws java.io.EOFException, UnexpectedCharacterExceptionConsumes the next character on this stream and verifies that it equals the given character.- Throws:
java.io.EOFException- This stream is at end-of-inputUnexpectedCharacterException- The next character does not equal the given character
-
read
int read(java.lang.String chars) throws java.io.EOFException, java.io.IOException, UnexpectedCharacterExceptionConsumes the nect character and verifies that it matches one of the characters of the givenString.- Returns:
- The position of the next character in the given
String - Throws:
java.io.EOFException- This stream is at end-of-inputUnexpectedCharacterException- The next character on this stream is not in the givenStringjava.io.IOException
-
peekRead
boolean peekRead(char c) throws java.io.IOExceptionIf the next character on this stream equals the given character, it is consumed.- Returns:
trueiff the next character on this stream equals the given character- Throws:
java.io.IOException
-
peekRead
int peekRead(java.lang.String chars) throws java.io.IOExceptionIf the next character on this stream is in the givenString, it is consumed.- Returns:
- The position of the next character in the given
String, or -1 - Throws:
java.io.IOException
-
atEoi
boolean atEoi() throws java.io.IOException- Returns:
- Whether this stream is at end-of-input
- Throws:
java.io.IOException
-
eoi
void eoi() throws UnexpectedCharacterException
- Throws:
UnexpectedCharacterException- This stream is not at end-of-input
-
-