Class | Description |
---|---|
AsciiInputStream |
An input stream that wraps a reader that contains only ASCII characters.
|
AsciiOutputStream |
An output stream that wraps a writer to write only ASCII characters.
|
BinaryPipe |
An in-memory pipe.
|
CapturingInputStream |
An input stream that captures the content it reads.
|
CapturingInputStream.Config |
Configuration for
capturing input streams . |
CapturingInputStream.Config.Builder |
A builder for
capturing input stream configurations . |
CapturingOutputStream |
An output stream that captures the content it writes.
|
CapturingOutputStream.Config |
Configuration for
capturing output streams . |
CapturingOutputStream.Config.Builder |
A builder for
capturing output stream configurations . |
CapturingReader |
A reader that captures the content it reads.
|
CapturingReader.Config |
Configuration for
capturing readers . |
CapturingReader.Config.Builder |
A builder for
capturing reader configurations . |
CapturingWriter |
A writer that captures the content it writes.
|
CapturingWriter.Config |
Configuration for
capturing writers . |
CapturingWriter.Config.Builder |
A builder for
capturing writer configurations . |
HexInputStream |
An input stream that converts hex into bytes.
|
HexOutputStream |
An output stream that converts bytes into hex.
|
LimitInputStream |
An input stream that limits the number of bytes that can be read from another input stream.
|
LimitOutputStream |
An output stream that limits the number of bytes that can be written to another output stream.
|
LimitReader |
A reader that limits the number of characters that can be read from another reader.
|
LimitWriter |
A writer that limits the number of characters that can be written to another writer.
|
MultiLineReader |
A class for reading multiple lines at a time.
|
MultiLineReader.Entry |
An entry that can be read using a
MultiLineReader . |
PipeInputStream |
An input stream that reads from a
BinaryPipe . |
PipeOutputStream |
An input stream that writes to a
BinaryPipe . |
PipeReader |
A reader that reads from a
TextPipe . |
PipeWriter |
A writer that writes to a
TextPipe . |
RandomInputStream |
An input stream that will return random bytes.
|
RandomInputStream.Builder |
A builder for
random input streams . |
RandomReader |
A reader that will return random characters.
|
RandomReader.Builder |
A builder for
random readers . |
StreamUtils | |
TextPipe |
An in-memory pipe.
|
Enum | Description |
---|---|
LimitExceededStrategy |
The possible strategies that can be used by
LimitReader , LimitWriter , LimitInputStream and LimitOutputStream . |
Exception | Description |
---|---|
LimitExceededException |
Exception thrown when the limit of a
LimitReader , LimitWriter , LimitInputStream or LimitOutputStream with strategy
LimitExceededStrategy.THROW was exceeded. |
Copyright © 2020–2024. All rights reserved.