| Package | Description |
|---|---|
| net.openhft.chronicle.bytes | |
| net.openhft.chronicle.bytes.util |
| Modifier and Type | Class and Description |
|---|---|
class |
StopCharTesters
A collection of predefined
StopCharTester implementations that define common stop character criteria. |
| Modifier and Type | Method and Description |
|---|---|
default @NotNull StopCharTester |
StopCharTester.escaping()
Returns a new instance that respects escape characters.
|
| Modifier and Type | Method and Description |
|---|---|
default void |
ByteStringParser.parse8bit(Appendable buffer,
@NotNull StopCharTester stopCharTester)
Parses an ISO-8859-1 encoded string from the byte string until the provided
stopCharTester
detects an end condition. |
default String |
ByteStringParser.parse8bit(@NotNull StopCharTester stopCharTester)
Parses an ISO-8859-1 encoded string from the byte string until the provided
stopCharTester
detects an end condition. |
default @Nullable Boolean |
ByteStringParser.parseBoolean(@NotNull StopCharTester tester)
Parses a boolean token, stopping when
tester returns true. |
default void |
ByteStringParser.parseUtf8(@NotNull Appendable buffer,
@NotNull StopCharTester stopCharTester)
Parses a UTF-8 encoded string from the byte string until the provided
stopCharTester
detects an end condition. |
default @NotNull String |
ByteStringParser.parseUtf8(@NotNull StopCharTester stopCharTester)
Parses a UTF-8 encoded string from the byte string until the provided
stopCharTester
detects an end condition. |
default boolean |
ByteStringParser.skipTo(@NotNull StopCharTester tester)
Advances the read position until
tester.isStopChar() returns true or end of input
is reached. |
| Modifier and Type | Class and Description |
|---|---|
class |
EscapingStopCharTester
Implementation of
StopCharTester where a backslash ('\\') escapes the
following character. |
| Constructor and Description |
|---|
EscapingStopCharTester(StopCharTester sct) |
Copyright © 2026 Chronicle Software Ltd. All rights reserved.