- getKeys(String) - Method in class com.github.vincentrussell.ini.Ini
-
get the keys from a particular section.
- getSection(String) - Method in class com.github.vincentrussell.ini.Ini
-
return the section as a map.
- getSections() - Method in class com.github.vincentrussell.ini.Ini
-
get the sections from the ini file.
- getSectionSortedByKey(String) - Method in class com.github.vincentrussell.ini.Ini
-
return the section as a map; sorted by key
- getSectionWithKeysThatMatchFunction(String, Predicate<Map.Entry<String, Object>>) - Method in class com.github.vincentrussell.ini.Ini
-
get a subset of a section where all the keys match the provided filter
- getSectionWithKeysWithPrefix(String, String) - Method in class com.github.vincentrussell.ini.Ini
-
get a subset of a section where all the keys match the provided prefix
- getSectionWithKeysWithRegex(String, String) - Method in class com.github.vincentrussell.ini.Ini
-
get a subset of a section where all the keys match the provided prefix
- getValue(String, String) - Method in class com.github.vincentrussell.ini.Ini
-
return a value from the nested structure as an object
- getValue(String, String, Class<T>) - Method in class com.github.vincentrussell.ini.Ini
-
return a value from the nested structure and cast it to the specified type.