Uses of Class
io.helidon.json.JsonObject.Builder
Packages that use JsonObject.Builder
-
Uses of JsonObject.Builder in io.helidon.json
Methods in io.helidon.json that return JsonObject.BuilderModifier and TypeMethodDescriptionstatic JsonObject.BuilderJsonObject.builder()Create a new JsonObject.Builder for fluent construction of JsonObject instances.static JsonObject.BuilderJsonValue.objectBuilder()A new fluent API builder to construct anJsonObject.Sets a boolean value for the specified key.Sets a double value for the specified key.Sets a float value for the specified key.Sets an int value for the specified key.Sets a long value for the specified key.Sets a JsonValue for the specified key.Sets a string value for the specified key.JsonObject.Builder.set(String key, BigDecimal value) Sets a BigDecimal value for the specified key.JsonObject.Builder.set(String key, Consumer<JsonObject.Builder> consumer) Sets a nested JsonObject for the specified key using a consumer.JsonObject.Builder.setBooleans(String key, List<Boolean> value) Sets a list of booleans for the specified key.JsonObject.Builder.setDoubles(String key, List<Double> value) Sets a list of doubles for the specified key.Sets a list of longs for the specified key.Sets a null value for the specified key.JsonObject.Builder.setNumbers(String key, List<BigDecimal> value) Sets a list of BigDecimal instances for the specified key.JsonObject.Builder.setStrings(String key, List<String> value) Sets a list of strings for the specified key.Sets a list of JsonValue instances for the specified key.Removes the property with the specified key from this builder.Method parameters in io.helidon.json with type arguments of type JsonObject.BuilderModifier and TypeMethodDescriptionJsonObject.Builder.set(String key, Consumer<JsonObject.Builder> consumer) Sets a nested JsonObject for the specified key using a consumer.