Interface INIBuilderProperties<T>
-
- Type Parameters:
T
- the type of the result of all set methods for method chaining
- All Known Subinterfaces:
INIBuilderParameters
- All Known Implementing Classes:
INIBuilderParametersImpl
public interface INIBuilderProperties<T>
Definition of a parameters interface for INI configurations.
The
INIConfiguration
class defines a bunch of additional properties related to INI processing.Important note: This interface is not intended to be implemented by client code! It defines a set of available properties and may be extended even in minor releases.
- Since:
- 2.2
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description T
setSeparatorUsedInOutput(java.lang.String separator)
Allows setting the separator between key and value to be used when writing an INI file.
-
-
-
Method Detail
-
setSeparatorUsedInOutput
T setSeparatorUsedInOutput(java.lang.String separator)
Allows setting the separator between key and value to be used when writing an INI file.- Parameters:
separator
- the new separator for INI output- Returns:
- a reference to this object for method chaining
-
-