Package adams.data.report
Interface ReportHandler<T extends Report>
-
- Type Parameters:
T
- the type of the report
- All Known Subinterfaces:
MutableReportHandler<T>
- All Known Implementing Classes:
AbstractImageContainer
,AbstractSimpleContainer
,BlobContainer
,BoofCVImageContainer
,BufferedImageBitmaskContainer
,BufferedImageContainer
,Instance
,ObjectContainer
,OpenCVImageContainer
,SpreadSheetRow
,TextContainer
,Timeseries
,WekaInstanceContainer
public interface ReportHandler<T extends Report>
Interface for data containers that handle reports.- Version:
- $Revision$
- Author:
- fracpete (fracpete at waikato dot ac dot nz)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description T
getReport()
Returns the report.boolean
hasReport()
Checks whether a report is present.
-
-
-
Method Detail
-
hasReport
boolean hasReport()
Checks whether a report is present.- Returns:
- true if a report is present
-
getReport
T getReport()
Returns the report.- Returns:
- the report, can be null if none available
-
-