Package eu.svjatoslav.commons.data
package eu.svjatoslav.commons.data
Provides utility classes for binary data manipulation and conversion.
This package contains classes for working with data at the bit level and converting binary data to human-readable formats:
BitInputStream- Read individual bits from an input streamBitOutputStream- Write individual bits to an output streamHexConverter- Convert byte arrays to hexadecimal strings
These utilities are useful for applications that need fine-grained control over binary data, such as compression algorithms, custom file formats, or network protocols.
- Since:
- 1.0
- Author:
- Svjatoslav Agejenko
- See Also:
-
ClassesClassDescriptionReads individual bits from an input stream.Writes individual bits to an output stream.Converts byte arrays to hexadecimal string representation.