Class JsonMinifier

java.lang.Object
put.ai.se.jsontools.core.format.JsonFormatter
put.ai.se.jsontools.core.format.JsonMinifier
All Implemented Interfaces:
FormattableJson

public class JsonMinifier extends JsonFormatter
The JsonMinifier class is responsible for minifying JSON data by removing whitespace and unnecessary characters. It decorates a JsonFormattable object and provides the minified JSON representation.
  • Constructor Details

    • JsonMinifier

      public JsonMinifier(FormattableJson source)
      Constructs a JsonMinifier object with the specified source.
      Parameters:
      source - the JsonFormattable object to be decorated and minified
  • Method Details

    • getProcessed

      public String getProcessed(FormatArguments arguments)
      Gets the minified JSON representation from the decorated source.
      Specified by:
      getProcessed in interface FormattableJson
      Overrides:
      getProcessed in class JsonFormatter
      Parameters:
      arguments - the JsonFormatParams object containing formatting parameters (ignored in minification)
      Returns:
      the minified JSON representation