diff options
author | Matthias Andreas Benkard <code@mail.matthias.benkard.de> | 2021-12-14 21:51:10 +0100 |
---|---|---|
committer | Matthias Andreas Benkard <code@mail.matthias.benkard.de> | 2021-12-14 21:51:10 +0100 |
commit | 55c34814bc7e6749a1530e7b36b51e0bc6358df3 (patch) | |
tree | 6405ff6b5904dc96dd27ecea98ef2b59fa30a4d4 /README.md | |
parent | 34430180f83a9e52ead4f919731f955bbc3b3b79 (diff) |
Remove Variant class, parse variants into Object.
Change-Id: I9b4b3079aea42b74f6fcf6341305b6fded9234f4
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 6 |
1 files changed, 1 insertions, 5 deletions
@@ -5,11 +5,7 @@ This library provides a [GVariant][] parser in pure Java. ## Overview -The two foundational classes are `Value` and `Decoder`. - -`Value` is a sum type (sealed interface) that represents a -[GVariant][] value. Its subtypes represent the different types of -values that [GVariant][] supports. +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 |