@Deprecated public class SerializableWriter<T> extends java.lang.Object implements IDataWriter<T>
| Constructor and Description |
|---|
SerializableWriter()
Deprecated.
|
| Modifier and Type | Method and Description |
|---|---|
void |
doWrite(java.io.OutputStream writeTo,
java.lang.Object... objects)
Deprecated.
|
java.io.File |
writeToFile(java.lang.String fileName,
T... objects)
Deprecated.
Write the objects (array/varargs) to a file.
|
java.lang.String |
writeToString(java.util.List<T> objects)
Deprecated.
Write the specified objects (list) to a string.
|
java.lang.String |
writeToString(T... objects)
Deprecated.
Write the specified objects (array/ varargs) to a string.
|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitwriteToFilepublic java.lang.String writeToString(java.util.List<T> objects)
IDataWriterwriteToString in interface IDataWriter<T>objects - to be written@SafeVarargs
public final java.io.File writeToFile(java.lang.String fileName,
T... objects)
IDataWriterwriteToFile in interface IDataWriter<T>fileName - the file to be written toobjects - the objects to be writtenIDataWriter.writeToFile(String, List)@SafeVarargs public final java.lang.String writeToString(T... objects)
IDataWriterwriteToString in interface IDataWriter<T>objects - to be writtenIDataWriter.writeToString(List)public void doWrite(java.io.OutputStream writeTo,
java.lang.Object... objects)
throws java.io.IOException
java.io.IOException