commit | 8643a278abe9b721e5988a5b9f5498f9ba88da2a | [log] [tgz] |
---|---|---|
author | Matthias Andreas Benkard <code@mail.matthias.benkard.de> | Fri Dec 17 06:53:33 2021 +0100 |
committer | Matthias Andreas Benkard <code@mail.matthias.benkard.de> | Fri Dec 17 06:53:33 2021 +0100 |
tree | 75ad2138be81218d1016d511750751a0d5870fbd | |
parent | 25b7f9082b5cccf437c122a8ba13f0732a784a41 [diff] |
POM: Add --add-opens flag to Surefire and Failsafe executions. Change-Id: I7e9f75693e79bf3ea8f756414e65815b5ab9dd6d
This library provides a GVariant parser in pure Java.
The foundational class is Decoder
.
Instances of Decoder
read a given concrete subtype of Value
from a ByteBuffer. The class also contains factory methods to create those instances.
The various subclasses of Decoder
together implement the GVariant serialization specification.
To parse a GVariant value of type "a(si)"
, which is an array of pairs of String and int
, you can use the following code:
record ExampleRecord(String s, int i) {} var decoder = Decoder.ofArray( Decoder.ofStructure( ExampleRecord.class, Decoder.ofString(StandardCharsets.UTF_8), Decoder.ofInt().withByteOrder(ByteOrder.LITTLE_ENDIAN))); byte[] bytes = ...; List<ExampleRecord> example = decoder.decode(ByteBuffer.wrap(bytes));