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