| Package | Description |
|---|---|
| net.openhft.chronicle.bytes | |
| net.openhft.chronicle.bytes.util |
| Modifier and Type | Method and Description |
|---|---|
default @NotNull StopCharsTester |
StopCharsTester.escaping()
Creates a new that respects escape characters in the string parsing operation.
|
| Modifier and Type | Method and Description |
|---|---|
default void |
ByteStringParser.parse8bit(Appendable buffer,
@NotNull StopCharsTester stopCharsTester)
Parses an ISO-8859-1 encoded string from the byte string until the provided
stopCharsTester
detects an end condition. |
default void |
ByteStringParser.parse8bit(Bytes<?> buffer,
@NotNull StopCharsTester stopCharsTester)
Parses an ISO-8859-1 encoded string from the byte string until the provided
stopCharsTester
detects an end condition. |
default void |
ByteStringParser.parse8bit(StringBuilder buffer,
@NotNull StopCharsTester stopCharsTester)
Parses an ISO-8859-1 encoded string from the byte string until the provided
stopCharsTester
detects an end condition. |
default void |
ByteStringParser.parseUtf8(@NotNull Appendable buffer,
@NotNull StopCharsTester stopCharsTester)
Parses a UTF-8 encoded string from the byte string until the provided
stopCharsTester
detects an end condition. |
static void |
AppendableUtil.read8bitAndAppend(@NotNull StreamingDataInput bytes,
@NotNull StringBuilder appendable,
@NotNull StopCharsTester tester)
Reads 8-bit characters from
bytes appending each to
appendable until tester signals a stop or the input ends. |
static void |
AppendableUtil.readUtf8AndAppend(@NotNull StreamingDataInput bytes,
@NotNull Appendable appendable,
@NotNull StopCharsTester tester)
Reads UTF-8 characters from
bytes and appends them to
appendable until tester signals a stop or the input ends. |
static void |
AppendableUtil.readUTFAndAppend(@NotNull StreamingDataInput bytes,
@NotNull Appendable appendable,
@NotNull StopCharsTester tester)
Reads 8-bit characters and appends them to
appendable until
tester requests a stop. |
| Modifier and Type | Class and Description |
|---|---|
class |
EscapingStopCharsTester
Implementation of
StopCharsTester that treats a backslash ('\\') as an
escape character. |
| Constructor and Description |
|---|
EscapingStopCharsTester(StopCharsTester sct) |
Copyright © 2026 Chronicle Software Ltd. All rights reserved.