Package nz.org.riskscape.ini
Interface IniProblems
- All Superinterfaces:
ProblemFactory
-
Method Summary
Modifier and TypeMethodDescriptionstatic IniProblemsget()invalidKeyValue(SourceLocation position, String text) A line looks like a key-value pair but is missing the '=' separator.invalidSection(SourceLocation position, String text) An INI section header was started with '[' but was not properly closed with ']'.
-
Method Details
-
get
-
invalidSection
An INI section header was started with '[' but was not properly closed with ']'. e.g.
[model fooinstead of[model foo] -
invalidKeyValue
A line looks like a key-value pair but is missing the '=' separator. e.g.
param.fooinstead ofparam.foo = value
-