| Package | Description |
|---|---|
| net.openhft.chronicle.bytes | |
| net.openhft.chronicle.bytes.render |
| Modifier and Type | Class and Description |
|---|---|
class |
AbstractBytes<U>
Provides a base implementation of
Bytes with cursor management,
optional bounds checking and default text formatting support. |
class |
GuardedNativeBytes<U>
Debugging wrapper that prefixes each primitive written with a type code and checks it on reads.
|
class |
HexDumpBytes
Bytes implementation that records all writes and produces a formatted hexadecimal dump of the data. |
class |
MappedBytes
A specialised
Bytes implementation backed by a memory-mapped file. |
class |
NativeBytes<U>
VanillaBytes backed by native (off heap) memory or a direct
ByteBuffer. |
class |
OnHeapBytes
VanillaBytes backed by an on heap byte[]. |
class |
SubBytes<U>
Represents a fixed size view over a region of another
BytesStore. |
class |
UncheckedBytes<U>
A wrapper around another
Bytes instance that bypasses most bounds
checks on read and write operations. |
class |
UncheckedNativeBytes<U>
Provides unchecked access to a native
BytesStore. |
class |
VanillaBytes<U>
Base implementation of
Bytes backed by a fixed-capacity
BytesStore. |
| Modifier and Type | Method and Description |
|---|---|
boolean |
GeneralDecimaliser.toDecimal(double value,
DecimalAppender decimalAppender)
Convert
value using the simple decimaliser then fall back to
UsesBigDecimal if necessary. |
boolean |
SimpleDecimaliser.toDecimal(double value,
DecimalAppender decimalAppender)
Convert
value using a simple rounding approach and append the result. |
boolean |
UsesBigDecimal.toDecimal(double value,
DecimalAppender decimalAppender)
Converts a double value to its decimal representation using
BigDecimal and appends it
to the provided DecimalAppender. |
boolean |
Decimaliser.toDecimal(double value,
DecimalAppender decimalAppender)
Convert
value to a decimal representation and append it. |
boolean |
MaximumPrecision.toDecimal(double value,
DecimalAppender decimalAppender)
Convert
value rounding to at most precision decimal places. |
boolean |
StandardDecimaliser.toDecimal(double value,
DecimalAppender decimalAppender)
|
boolean |
GeneralDecimaliser.toDecimal(float value,
DecimalAppender decimalAppender)
Convert
value using the simple decimaliser then fall back to
UsesBigDecimal if necessary. |
boolean |
SimpleDecimaliser.toDecimal(float value,
DecimalAppender decimalAppender)
Convert
value using a simple rounding approach and append the result. |
boolean |
UsesBigDecimal.toDecimal(float value,
DecimalAppender decimalAppender)
Converts a float value to its decimal representation using
BigDecimal and appends it
to the provided DecimalAppender. |
boolean |
Decimaliser.toDecimal(float value,
DecimalAppender decimalAppender)
Convert
value to a decimal representation and append it. |
boolean |
MaximumPrecision.toDecimal(float value,
DecimalAppender decimalAppender)
Convert
value rounding to at most precision decimal places. |
boolean |
StandardDecimaliser.toDecimal(float value,
DecimalAppender decimalAppender)
|
Copyright © 2026 Chronicle Software Ltd. All rights reserved.