Package ubic.gemma.core.analysis.service
Interface JsonFileService<T>
-
- Type Parameters:
T
- the type of entity being serialized to JSON
- All Superinterfaces:
FileService<T>
- All Known Implementing Classes:
AbstractFileService
,DifferentialExpressionAnalysisResultListFileServiceImpl
,ExpressionAnalysisResultSetFileServiceImpl
,ExpressionDataFileServiceImpl
,MatrixWriter
public interface JsonFileService<T> extends FileService<T>
Interface for service that provides JSON serialization.- Author:
- poirigui
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
writeJson(T entity, Writer writer)
Write a given entity to JSON.-
Methods inherited from interface ubic.gemma.core.analysis.service.FileService
write, write
-
-
-
-
Method Detail
-
writeJson
void writeJson(T entity, Writer writer) throws IOException
Write a given entity to JSON.- Throws:
IOException
-
-