Package ubic.gemma.core.analysis.service
Interface TsvFileService<T>
- 
- Type Parameters:
- T- the entity being serialized
 - All Superinterfaces:
- FileService<T>
 - All Known Subinterfaces:
- ExpressionAnalysisResultSetFileService,- ExpressionDataFileService
 - All Known Implementing Classes:
- AbstractFileService,- ExpressionAnalysisResultSetFileServiceImpl,- ExpressionDataFileServiceImpl,- MatrixWriter
 
 public interface TsvFileService<T> extends FileService<T> Interface for services that produce TSV serialization.
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description voidwriteTsv(T entity, File file)voidwriteTsv(T entity, Writer writer)Write the given entity to tabular format.- 
Methods inherited from interface ubic.gemma.core.analysis.service.FileServicewrite, write
 
- 
 
- 
- 
- 
Method Detail- 
writeTsvvoid writeTsv(T entity, Writer writer) throws IOException Write the given entity to tabular format.- Throws:
- IOException
 
 - 
writeTsvvoid writeTsv(T entity, File file) throws IOException - Throws:
- IOException
 
 
- 
 
-