Interface DBSummaryService
-
- All Implemented Interfaces:
public interface DBSummaryServiceDefinition of the service to read summary data from the home power plant database
- Since:
2.0
-
-
Method Summary
Modifier and Type Method Description abstract HistoryDatareadDailySummary(LocalDate day)Reads the basic data for a concrete day abstract HistoryDatareadMonthlySummary(YearMonth yearMonth)Reads the basic data for a concrete month abstract HistoryDatareadYearlySummary(Year year)Reads the basic data for a concrete year -
-
Method Detail
-
readDailySummary
abstract HistoryData readDailySummary(LocalDate day)
Reads the basic data for a concrete day
- Parameters:
day- Day to be read- Returns:
Basic data of the specified day
- Since:
2.0
-
readMonthlySummary
abstract HistoryData readMonthlySummary(YearMonth yearMonth)
Reads the basic data for a concrete month
- Parameters:
yearMonth- Month to be read- Returns:
Basic data of the specified month
- Since:
2.0
-
readYearlySummary
abstract HistoryData readYearlySummary(Year year)
Reads the basic data for a concrete year
- Parameters:
year- Year to be read- Returns:
Basic data of the specified year
- Since:
2.0
-
-
-
-