Interface IConfigurationWriter
-
- All Known Implementing Classes:
RDFConfigurationWriter,XMLConfigurationWriter
public interface IConfigurationWriter- Version:
- Jul 8, 2016
- Author:
- Mohamed Sherif (sherif@informatik.uni-leipzig.de)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidwrite(Configuration configuration, String outputFile)Write the configuration object to outputFile detecting the format from outputFile extensionvoidwrite(Configuration configuration, String outputFile, String format)Write the configuration object to outputFile in the given format
-
-
-
Method Detail
-
write
void write(Configuration configuration, String outputFile, String format) throws IOException
Write the configuration object to outputFile in the given format- Parameters:
configuration- object to be WrittenoutputFile- to write the configuration object toformat- of the outputFile- Throws:
IOException- if the output file can not be created
-
write
void write(Configuration configuration, String outputFile) throws IOException
Write the configuration object to outputFile detecting the format from outputFile extension- Parameters:
configuration- object to be WrittenoutputFile- to write the configuration object to- Throws:
IOException- if the output file can not be created
-
-