Package rife.json
Interface JsonArrayAction
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
Functional interface that captures an action to execute
on a
JsonArray instance.
There's no need to implement this interface directly, it's intended
to be provided as an inline lambda to
JsonObject.array(String, JsonArrayAction) and
JsonArray.array(JsonArrayAction), which construct a nested
JSON array, hand it to the action to populate, and attach it to
the enclosing structure.
- Since:
- 1.10
-
Method Summary
-
Method Details
-
use
Executes the action on the specifiedJsonArrayinstance.- Parameters:
a- theJsonArrayinstance on which to execute the action- Since:
- 1.10
-