public interface DataEntryWriter
| Modifier and Type | Method and Description |
|---|---|
void |
close()
Finishes writing all data entries.
|
boolean |
createDirectory(DataEntry dataEntry)
Creates a directory.
|
OutputStream |
createOutputStream(DataEntry dataEntry)
Creates a new output stream for writing data.
|
void |
println(PrintWriter pw,
String prefix)
Prints out the structure of the data entry writer.
|
boolean |
sameOutputStream(DataEntry dataEntry1,
DataEntry dataEntry2)
Returns whether the two given data entries would result in the same
output stream.
|
boolean createDirectory(DataEntry dataEntry) throws IOException
dataEntry - the data entry for which the directory is to be created.IOExceptionboolean sameOutputStream(DataEntry dataEntry1, DataEntry dataEntry2) throws IOException
dataEntry1 - the first data entry.dataEntry2 - the second data entry.IOExceptionOutputStream createOutputStream(DataEntry dataEntry) throws IOException
dataEntry - the data entry for which the output stream is to be
created.null to
indicate that the data entry should not be written.IOExceptionvoid close()
throws IOException
IOExceptionvoid println(PrintWriter pw, String prefix)
pw - the print stream to which the structure should be printed.prefix - a prefix for every printed line.Copyright © 2019. All rights reserved.