Class JsonValidator

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

public class JsonValidator extends Object implements FormattableJson
Checks if given input is in correct JSON format.
  • Field Details

    • source

      private String source
  • Constructor Details

    • JsonValidator

      public JsonValidator(String source) throws IllegalArgumentException
      Constructs a new `JsonString` object with the provided value.
      Parameters:
      source - The JSON string value.
      Throws:
      IllegalArgumentException - If the provided value is not a valid JSON string.
  • Method Details

    • isValid

      public static boolean isValid(String source)
      Checks whether the provided string is a valid JSON string.
      Parameters:
      source - A string to be checked.
      Returns:
      true if the provided string is a valid JSON string, false otherwise.
    • setSource

      public void setSource(String source) throws IllegalArgumentException
      Sets the value of the JSON string.
      Parameters:
      source - The JSON string value to be assigned.
      Throws:
      IllegalArgumentException - If the provided value is not a valid JSON string.
    • getProcessed

      public String getProcessed(FormatArguments arguments)
      Description copied from interface: FormattableJson
      Returns the processed JSON string based on the provided format arguments.
      Specified by:
      getProcessed in interface FormattableJson
      Parameters:
      arguments - The format arguments.
      Returns:
      The processed JSON string.