Package com.opengamma.strata.report
Interface ReportTemplateIniLoader<T extends ReportTemplate>
-
- Type Parameters:
T
- the report template type
- All Known Implementing Classes:
CashFlowReportTemplateIniLoader
,TradeReportTemplateIniLoader
public interface ReportTemplateIniLoader<T extends ReportTemplate>
Loads a report template from an ini-based file format.
-
-
Field Summary
Fields Modifier and Type Field Description static String
SETTINGS_REPORT_TYPE
The report type property name, in the settings section.static String
SETTINGS_SECTION
The settings section name.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getReportType()
Gets the type of report handled by this loader.T
load(IniFile iniFile)
Loads the report template.
-
-
-
Field Detail
-
SETTINGS_SECTION
static final String SETTINGS_SECTION
The settings section name.- See Also:
- Constant Field Values
-
SETTINGS_REPORT_TYPE
static final String SETTINGS_REPORT_TYPE
The report type property name, in the settings section.- See Also:
- Constant Field Values
-
-