Uses of Class
org.djutils.decoderdumper.Dumper
Package | Description |
---|---|
org.djutils.decoderdumper |
Decode and dump a data stream in a human readable format.
|
-
Uses of Dumper in org.djutils.decoderdumper
Subclasses of Dumper in org.djutils.decoderdumper Modifier and Type Class Description class
Base64Dumper
Decode base64 encoded data and dump it in hexadecimal format and (insofar possible) as characters.class
HexDumper
Dump data in hexadecimal format and (insofar possible) as characters.Methods in org.djutils.decoderdumper that return Dumper Modifier and Type Method Description Dumper<T>
Dumper. addDecoder(int index, Decoder decoder)
Add a Decoder at a specified index.Dumper<T>
Dumper. append(byte[] bytes)
Append an array of bytes.Dumper<T>
Dumper. append(byte[] bytes, int start, int len)
Append a slice of an array of bytes.Dumper<T>
Dumper. append(InputStream inputStream)
Consume an entire input stream and append what it produces to this Dumpmer.Dumper<T>
Dumper. setOutputStream(OutputStream newOutputStream)
Set or replace the active output stream.Dumper<T>
Dumper. setSuppressMultipleIdenticalLines(boolean newState)
Set the output compression mode.