Class Gson2Config

java.lang.Object
org.jdbi.v3.gson2.Gson2Config
All Implemented Interfaces:
JdbiConfig<Gson2Config>

public class Gson2Config extends Object implements JdbiConfig<Gson2Config>
Configuration class for Gson 2 integration.
  • Constructor Details

    • Gson2Config

      public Gson2Config()
  • Method Details

    • setGson

      public Gson2Config setGson(com.google.gson.Gson gson)
      Set the Gson to use for json conversion.
      Parameters:
      gson - the mapper to use
      Returns:
      this
    • getGson

      public com.google.gson.Gson getGson()
      Returns the Gson object used for json conversion.
      Returns:
      the Gson object used for json conversion.
    • createCopy

      public Gson2Config createCopy()
      Description copied from interface: JdbiConfig
      Returns a copy of this configuration object. Changes to the copy should not modify the original, and vice-versa.
      Specified by:
      createCopy in interface JdbiConfig<Gson2Config>
      Returns:
      a copy of this configuration object.