Package put.ai.se.jsontools.core.format
Class JsonPrettifier
java.lang.Object
put.ai.se.jsontools.core.format.JsonFormatter
put.ai.se.jsontools.core.format.JsonPrettifier
- All Implemented Interfaces:
FormattableJson
The JsonPrettifier class provides functionality to prettify (format with
indentation) JSON data.
It acts as a decorator for a JsonFormattable object and modifies its behavior
accordingly.
-
Constructor Summary
ConstructorsConstructorDescriptionJsonPrettifier
(FormattableJson source) Constructs a new JsonPrettifier object with the specified source. -
Method Summary
Modifier and TypeMethodDescriptiongetProcessed
(FormatArguments arguments) Returns the prettified JSON value.
-
Constructor Details
-
JsonPrettifier
Constructs a new JsonPrettifier object with the specified source.- Parameters:
source
- the JsonFormattable object to be prettified
-
-
Method Details
-
getProcessed
Returns the prettified JSON value.- Specified by:
getProcessed
in interfaceFormattableJson
- Overrides:
getProcessed
in classJsonFormatter
- Parameters:
arguments
- the JsonFormatParams (not used in this implementation)- Returns:
- the prettified JSON value
-