| Package | Description |
|---|---|
| ca.szc.configparser |
| Modifier and Type | Method and Description |
|---|---|
Ini |
Ini.read(BufferedReader reader)
Parse INI text
|
Ini |
Ini.read(Path iniPath)
Parse an INI file with the default
Charset |
Ini |
Ini.read(Path iniPath,
Charset charset)
Parse an INI file with a specified
Charset |
Ini |
Ini.setAllowDuplicates(boolean allowDuplicates)
Set if duplicate sections and options will be accepted, or throw a
IniParserException at
read(BufferedReader) time. |
Ini |
Ini.setAllowInterpolation(boolean allowInterpolation)
Set if interpolation of values should be performed.
|
Ini |
Ini.setAllowNoValue(boolean allowNoValue)
Set if option keys with no values will be accepted, or throw a
IniParserException at
read(BufferedReader) time. |
Ini |
Ini.setCommentPrefixes(List<String> commentPrefixes)
Set which
Strings should start full comment lines. |
Ini |
Ini.setDelimiters(List<String> delimiters)
Set which
Strings should divide option keys from values |
Ini |
Ini.setEmptyLinesInValues(boolean emptyLinesInValues)
Set if empty lines should be considered to be a part of the latest option's value or not.
|
Ini |
Ini.setInlineCommentPrefixes(List<String> inlineCommentPrefixes)
Set which
Strings should divide data from comments on non-blank lines |
Ini |
Ini.setSpaceAroundDelimiters(boolean spaceAroundDelimiters)
Set if spaces should be placed around option key/value delimiters when writing
|
Ini |
Ini.write(BufferedWriter writer)
Write INI formatted text
|
Ini |
Ini.write(Path iniPath)
Write an INI file with the default
Charset |
Ini |
Ini.write(Path iniPath,
Charset charset)
Write an INI file with a specified
Charset |
Copyright © 2016. All rights reserved.