All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.json.JSONParserConfiguration Maven / Gradle / Ivy

There is a newer version: 2.0.32
Show newest version
package org.json;

/**
 * Configuration object for the JSON parser. The configuration is immutable.
 */
public class JSONParserConfiguration extends ParserConfiguration {

  /**
   * Configuration with the default values.
   */
  public JSONParserConfiguration() {
    super();
  }

  @Override
  protected JSONParserConfiguration clone() {
    return new JSONParserConfiguration();
  }

  @SuppressWarnings("unchecked")
  @Override
  public JSONParserConfiguration withMaxNestingDepth(final int maxNestingDepth) {
    return super.withMaxNestingDepth(maxNestingDepth);
  }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy