diff options
author | Matthias Andreas Benkard <code@mail.matthias.benkard.de> | 2021-12-16 20:17:20 +0100 |
---|---|---|
committer | Matthias Andreas Benkard <code@mail.matthias.benkard.de> | 2021-12-16 20:17:20 +0100 |
commit | b50fcd05c0f6701bcddfebff5689a34a76534fab (patch) | |
tree | c04874f16f0ea6349cdcd7f2498498ce70bc3489 /src/main | |
parent | 31c61e74156730f04eef641bfb69b9ee94b62fbd (diff) |
Improve Variant documentation.
Change-Id: Ic25729c8bf2e71cdfcf54e3a2794664b400723bd
Diffstat (limited to 'src/main')
-rw-r--r-- | src/main/java/eu/mulk/jgvariant/core/Decoder.java | 7 | ||||
-rw-r--r-- | src/main/java/eu/mulk/jgvariant/core/Variant.java | 3 |
2 files changed, 6 insertions, 4 deletions
diff --git a/src/main/java/eu/mulk/jgvariant/core/Decoder.java b/src/main/java/eu/mulk/jgvariant/core/Decoder.java index 389ae85..d0c0323 100644 --- a/src/main/java/eu/mulk/jgvariant/core/Decoder.java +++ b/src/main/java/eu/mulk/jgvariant/core/Decoder.java @@ -141,9 +141,9 @@ public abstract class Decoder<T> { } /** - * Creates a {@link Decoder} for the {@code Variant} type. + * Creates a {@link Decoder} for the {@link Variant} type. * - * <p>The returned {@link Object} can be of one of the following types: + * <p>The contained {@link Object} can be of one of the following types: * * <ul> * <li>{@link Boolean} @@ -155,6 +155,7 @@ public abstract class Decoder<T> { * <li>{@link Optional} (a GVariant {@code Maybe} type) * <li>{@link List} (a GVariant array) * <li>{@link Object[]} (a GVariant structure) + * <li>{@link Variant} (a nested variant) * </ul> * * @return a new {@link Decoder}. @@ -164,7 +165,7 @@ public abstract class Decoder<T> { } /** - * Creates a {@link Decoder} for the {@code Boolean} type. + * Creates a {@link Decoder} for the {@code boolean} type. * * @return a new {@link Decoder}. */ diff --git a/src/main/java/eu/mulk/jgvariant/core/Variant.java b/src/main/java/eu/mulk/jgvariant/core/Variant.java index e2b4b68..134a5e8 100644 --- a/src/main/java/eu/mulk/jgvariant/core/Variant.java +++ b/src/main/java/eu/mulk/jgvariant/core/Variant.java @@ -15,11 +15,12 @@ package eu.mulk.jgvariant.core; * <li>{@link java.util.Optional} (a GVariant {@code Maybe} type) * <li>{@link java.util.List} (a GVariant array) * <li>{@link Object[]} (a GVariant structure) + * <li>{@link Variant} (a nested variant) * </ul> * * @param signature the signature describing the type of the value. * @param value the value itself; one of {@link Boolean}, {@link Byte}, {@link Short}, {@link * Integer}, {@link Long}, {@link String}, {@link java.util.Optional}, {@link java.util.List}, - * {@link Object[]}. + * {@link Object[]}, {@link Variant}. */ public record Variant(Signature signature, Object value) {} |