Uses of Interface
io.helidon.metadata.hson.Hson.Struct.Builder
-
Uses of Hson.Struct.Builder in io.helidon.metadata.hson
Modifier and TypeMethodDescriptionstatic Hson.Struct.Builder
Hson.Struct.builder()
A new fluent API builder to construct a HSON Struct.Set a boolean value.Set a double value.Set a float value.Set an int value.Set a long value.Hson.Struct.Builder.set
(String key, Hson.Array value) Set an array.Hson.Struct.Builder.set
(String key, Hson.Value<?> value) Set a value.Set a string value.Hson.Struct.Builder.set
(String key, BigDecimal value) Set aBigDecimal
value.Hson.Struct.Builder.setBooleans
(String key, List<Boolean> value) Set an array of booleans.Hson.Struct.Builder.setDoubles
(String key, List<Double> value) Set an array of doubles.Set an array of longs.Set a null value for the specified key.Hson.Struct.Builder.setNumbers
(String key, List<BigDecimal> value) Set an array of numbers (such asBigDecimal
).Hson.Struct.Builder.setStrings
(String key, List<String> value) Set an array of strings.Hson.Struct.Builder.setStructs
(String key, List<Hson.Struct> value) Set an array of structs.static Hson.Struct.Builder
Hson.structBuilder()
A new fluent API builder to construct na HSON Struct.Unset an existing value assigned to the key.