Interface SimpleSettings

All Superinterfaces:
Iterable<Map.Entry<String,String>>, Settings
All Known Subinterfaces:
PersistentSettings
All Known Implementing Classes:
FileSettings, SimpleSettingsImpl

public interface SimpleSettings extends Settings
provides persistent settings for any application. The settings can be edited manually. Settings are organized into groups which may contain other groups. Groups are, however, optional and a root group exists and is the first to be available.
Author:
Steve Flasby
  • Method Details

    • get

      String get(String name)
      gets a value from this settings group.
      Specified by:
      get in interface Settings
      Parameters:
      name -
      Returns:
    • add

      void add(String name, String value)
    • remove

      void remove(String name)
    • isEmpty

      boolean isEmpty()
      Specified by:
      isEmpty in interface Settings