public interface Persistable
| Modifier and Type | Method and Description |
|---|---|
File |
getFile() |
void |
load() |
void |
load(File input) |
void |
load(InputStream input) |
void |
load(Reader input) |
void |
load(URL input) |
void |
setFile(File value) |
void |
store() |
void |
store(File output) |
void |
store(OutputStream output) |
void |
store(Writer output) |
void load() throws IOException, InvalidFileFormatException
void load(InputStream input) throws IOException, InvalidFileFormatException
void load(Reader input) throws IOException, InvalidFileFormatException
void load(File input) throws IOException, InvalidFileFormatException
void load(URL input) throws IOException, InvalidFileFormatException
void store() throws IOException
IOExceptionvoid store(OutputStream output) throws IOException
IOExceptionvoid store(Writer output) throws IOException
IOExceptionvoid store(File output) throws IOException
IOException