Package gaiasky.util
Class SettingsMorph
java.lang.Object
gaiasky.util.SettingsMorph
Convert old settings (properties files) to new settings (YAML-based).
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionstatic void
morphSettings
(Path propertiesFile, Path yamlFile) This method loads the given properties file into aProperties
, creates aSettings
and fills it up with the contents of the properties file.
-
Constructor Details
-
SettingsMorph
public SettingsMorph()
-
-
Method Details
-
morphSettings
public static void morphSettings(Path propertiesFile, Path yamlFile) throws FileNotFoundException, IOException This method loads the given properties file into aProperties
, creates aSettings
and fills it up with the contents of the properties file. Finally, it writes theSettings
instance to disk in the YAML format to the givenyamlFile
.- Parameters:
propertiesFile
- The location of the properties file.yamlFile
- The location to save the YAML settings file.- Throws:
FileNotFoundException
IOException
-