Package net.aequologica.neo.serioulizer
Interface Writer<T>
-
- All Known Subinterfaces:
ReaderWriter<T>
- All Known Implementing Classes:
AbstractReaderWriter,InMemoryReaderWriter,MinimalReaderWriter,SeriousReaderWriter
public interface Writer<T>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidwrite(OutputStream outputStream, T object)voidwrite(Writer writer, T object)voidwrite(Path target, T object)
-
-
-
Method Detail
-
write
void write(Path target, T object) throws IOException
- Throws:
IOException
-
write
void write(OutputStream outputStream, T object) throws IOException
- Throws:
IOException
-
write
void write(Writer writer, T object) throws IOException
- Throws:
IOException
-
-