Package org.ini4j
Interface Persistable
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description FilegetFile()voidload()voidload(File input)voidload(InputStream input)voidload(Reader input)voidload(URL input)voidsetFile(File value)voidstore()voidstore(File output)voidstore(OutputStream output)voidstore(Writer output)
-
-
-
Method Detail
-
getFile
File getFile()
-
setFile
void setFile(File value)
-
load
void load() throws IOException, InvalidFileFormatException- Throws:
IOExceptionInvalidFileFormatException
-
load
void load(InputStream input) throws IOException, InvalidFileFormatException- Throws:
IOExceptionInvalidFileFormatException
-
load
void load(Reader input) throws IOException, InvalidFileFormatException- Throws:
IOExceptionInvalidFileFormatException
-
load
void load(File input) throws IOException, InvalidFileFormatException- Throws:
IOExceptionInvalidFileFormatException
-
load
void load(URL input) throws IOException, InvalidFileFormatException- Throws:
IOExceptionInvalidFileFormatException
-
store
void store() throws IOException- Throws:
IOException
-
store
void store(OutputStream output) throws IOException- Throws:
IOException
-
store
void store(Writer output) throws IOException- Throws:
IOException
-
store
void store(File output) throws IOException- Throws:
IOException
-
-