Ask Your Question

Revision history [back]

click to hide/show revision 1
initial version

To retrieve the values of a JsonObject while using the collect operator in Java, you can use the following code:

JsonObject jsonObject = new JsonObject();
// add key-value pairs to the JsonObject

List<JsonElement> values = jsonObject.entrySet().stream()
                            .map(Map.Entry::getValue)
                            .collect(Collectors.toList());

This will create a List of JsonElement objects containing all the values of the JsonObject. You can then iterate over this list to access the individual values.