Package | Description |
---|---|
fr.tikione.ini |
Provides main classes to work with INI files.
|
Modifier and Type | Method and Description |
---|---|
void |
Ini.checkContent()
Try to get all keys values of all sections, in order to throw an exception if a critical error is detected.
|
void |
Ini.checkContent(Config config)
Try to get all keys values of all sections, in order to throw an exception if a critical error is detected.
|
protected java.lang.String |
Ini.getKeyValue(int loop,
java.lang.String defval,
java.lang.String section,
java.lang.String key,
Config config,
boolean raw)
Get key value from the INI content.
|
java.lang.String |
Ini.getKeyValue(java.lang.String section,
java.lang.String key)
Get key value from the INI content.
|
java.lang.String |
Ini.getKeyValue(java.lang.String section,
java.lang.String key,
Config config)
Get key value from the INI content.
|
java.lang.String |
Ini.getKeyValue(java.lang.String defVal,
java.lang.String section,
java.lang.String key)
Get key value from the INI content.
|
java.lang.String |
Ini.getKeyValue(java.lang.String defVal,
java.lang.String section,
java.lang.String key,
Config config)
Get key value from the INI content.
|
java.util.Map<java.lang.String,java.lang.String> |
Ini.getSectionValues(java.lang.String section)
Get a
Map of all keys and values of a section. |
java.util.Map<java.lang.String,java.lang.String> |
Ini.getSectionValues(java.lang.String section,
Config config)
Get a
Map of all keys and values of a section. |