Class GsonConfig

java.lang.Object
me.hsgamer.hscore.config.gson.GsonConfig
All Implemented Interfaces:
Config

public class GsonConfig extends Object implements Config
The Config implementation for Gson
  • Constructor Details

    • GsonConfig

      public GsonConfig(File file, com.google.gson.Gson gson)
      Create a new config
      Parameters:
      file - the file
      gson - the Gson instance
    • GsonConfig

      public GsonConfig(File file)
      Create a new config
      Parameters:
      file - the file
  • Method Details

    • getOriginal

      public com.google.gson.JsonObject getOriginal()
      Description copied from interface: Config
      Get the original instance
      Specified by:
      getOriginal in interface Config
      Returns:
      the original instance
    • get

      public Object get(PathString path, Object def)
      Description copied from interface: Config
      Get the value from the path
      Specified by:
      get in interface Config
      Parameters:
      path - the path
      def - the default value if the value is not found
      Returns:
      the value
    • set

      public void set(PathString path, Object value)
      Description copied from interface: Config
      Set the value to the path
      Specified by:
      set in interface Config
      Parameters:
      path - the path
      value - the value
    • clear

      public void clear()
      Description copied from interface: Config
      Remove all paths from the configuration
      Specified by:
      clear in interface Config
    • getName

      public String getName()
      Description copied from interface: Config
      Get the name of the configuration
      Specified by:
      getName in interface Config
      Returns:
      the name
    • getValues

      public Map<PathString,Object> getValues(PathString path, boolean deep)
      Description copied from interface: Config
      Get all values from the path
      Specified by:
      getValues in interface Config
      Parameters:
      path - the path
      deep - should we go deeper from the path?
      Returns:
      the values
    • setup

      public void setup()
      Description copied from interface: Config
      Set up the configuration
      Specified by:
      setup in interface Config
    • save

      public void save()
      Description copied from interface: Config
      Save the configuration
      Specified by:
      save in interface Config
    • reload

      public void reload()
      Description copied from interface: Config
      Reload the configuration
      Specified by:
      reload in interface Config
    • normalize

      public Object normalize(Object object)
      Description copied from interface: Config
      Normalize the library-specific object
      Specified by:
      normalize in interface Config
      Parameters:
      object - the object
      Returns:
      the normalized object
    • isNormalizable

      public boolean isNormalizable(Object object)
      Description copied from interface: Config
      Check if the object is normalizable
      Specified by:
      isNormalizable in interface Config
      Parameters:
      object - the object
      Returns:
      true if it is