Package | Description |
---|---|
info.bioinfweb.commons.io |
Modifier and Type | Method and Description |
---|---|
PeekReader.ReadResult |
PeekReader.peekLine() |
PeekReader.ReadResult |
PeekReader.readLine()
Reads a line of text.
|
PeekReader.ReadResult |
PeekReader.readLine(int maxLength)
Reads a line of text with the specified maximum length.
|
PeekReader.ReadResult |
PeekReader.readRegExp(int maxLength,
java.util.regex.Pattern pattern,
boolean greedy)
Reads characters into a string buffer until the contents of this buffer match the specified pattern or the end
of the stream is reached or the maximum number of characters was read.
|
PeekReader.ReadResult |
PeekReader.readRegExp(int maxLength,
java.lang.String regExp,
boolean greedy)
Reads characters into a string buffer until the contents of this buffer match the specified pattern or the end
of the stream is reached or the maximum number of characters was read.
|
PeekReader.ReadResult |
PeekReader.readRegExp(java.util.regex.Pattern pattern,
boolean greedy)
Reads characters into a string buffer until the contents of this buffer match the specified pattern or the end
of the stream is reached.
|
PeekReader.ReadResult |
PeekReader.readRegExp(java.lang.String regExp,
boolean greedy)
Reads characters into a string buffer until the contents of this buffer match the specified pattern or the end
of the stream is reached.
|
PeekReader.ReadResult |
PeekReader.readUntil(int maxLength,
java.lang.String terminationSequence)
Reads characters into a string buffer until the specified termination sequence is found or the end of the
stream is reached.
|
PeekReader.ReadResult |
PeekReader.readUntil(int maxLength,
java.lang.String[] terminationSequences) |
protected PeekReader.ReadResult |
PeekReader.readUntil(int maxLength,
java.lang.String[] terminationSequences,
boolean untilWhitespace) |
PeekReader.ReadResult |
PeekReader.readUntil(java.lang.String terminationSequence)
Reads characters into a string buffer until the specified termination sequence is found.
|
PeekReader.ReadResult |
PeekReader.readUntil(java.lang.String[] terminationSequences) |
PeekReader.ReadResult |
PeekReader.readUntilWhitespace(int maxLength,
java.lang.String terminationSequence) |
PeekReader.ReadResult |
PeekReader.readUntilWhitespace(int maxLength,
java.lang.String[] terminationSequences) |
PeekReader.ReadResult |
PeekReader.readUntilWhitespace(java.lang.String[] terminationSequences) |