Module org.jooq

Interface ContainerFactory


@Deprecated(forRemoval=true) public interface ContainerFactory
Deprecated, for removal: This API element is subject to removal in a future version.
- 3.21.0 - [#18329] - This shaded third party dependency will be removed without replacement. Please use any other JSON parser, instead - e.g. Jackson.
Container factory for creating containers for JSON object and JSON array.
Author:
FangYidong<fangyidong@yahoo.com.cn>
See Also:
  • Method Summary

    Modifier and Type
    Method
    Description
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    Deprecated, for removal: This API element is subject to removal in a future version.
     
  • Method Details

    • createObjectContainer

      Map createObjectContainer()
      Deprecated, for removal: This API element is subject to removal in a future version.
      Returns:
      A Map instance to store JSON object, or null if you want to use org.json.simple.JSONObject.
    • createArrayContainer

      List createArrayContainer()
      Deprecated, for removal: This API element is subject to removal in a future version.
      Returns:
      A List instance to store JSON array, or null if you want to use org.json.simple.JSONArray.