| Package | Description |
|---|---|
| net.openhft.chronicle.bytes |
The Chronicle Bytes package provides low-level memory access wrappers with functionalities
akin to Java NIO's ByteBuffer.
|
| net.openhft.chronicle.bytes.render |
Provides classes and interfaces for rendering byte sequences into decimal representation
with various levels of precision and formatting.
|
| Modifier and Type | Method and Description |
|---|---|
Decimaliser |
ByteStringAppender.decimaliser()
Gets the Decimaliser currently associated with this ByteStringAppender.
|
Decimaliser |
HexDumpBytes.decimaliser() |
Decimaliser |
UncheckedNativeBytes.decimaliser() |
Decimaliser |
AbstractBytes.decimaliser() |
| Modifier and Type | Method and Description |
|---|---|
B |
ByteStringAppender.decimaliser(Decimaliser decimaliser)
Associates a Decimaliser with this ByteStringAppender.
|
Bytes<Void> |
HexDumpBytes.decimaliser(Decimaliser decimaliser) |
Bytes<U> |
UncheckedNativeBytes.decimaliser(Decimaliser decimaliser) |
Bytes<U> |
AbstractBytes.decimaliser(Decimaliser decimaliser) |
| Modifier and Type | Class and Description |
|---|---|
class |
GeneralDecimaliser
A versatile implementation of
Decimaliser which employs a hybrid approach to convert floating-point numbers
to decimal representation. |
class |
MaximumPrecision
Implementation of
Decimaliser that converts floating-point numbers to decimal representation with a specified
maximum number of decimal places. |
class |
SimpleDecimaliser
A light-weight implementation of
Decimaliser, which employs a simple rounding technique for converting floating-point
numbers to decimal representation. |
class |
StandardDecimaliser
Implementation of
Decimaliser that converts floating-point numbers to their decimal representation in
standard form. |
class |
UsesBigDecimal
An implementation of
Decimaliser that uses BigDecimal for higher-precision conversions of floating-point
numbers to decimal representation. |
| Modifier and Type | Field and Description |
|---|---|
static Decimaliser |
GeneralDecimaliser.GENERAL
A singleton instance of
GeneralDecimaliser for convenient reuse. |
static Decimaliser |
SimpleDecimaliser.SIMPLE
A singleton instance of
SimpleDecimaliser for convenient reuse. |
static Decimaliser |
UsesBigDecimal.USES_BIG_DECIMAL
A singleton instance of
UsesBigDecimal for convenient reuse. |
Copyright © 2024. All rights reserved.