public interface ReportResult
Modifier and Type | Method and Description |
---|---|
int |
getPeriod()
Returns a period which specifies a time span within a year.
|
PeriodUnit |
getPeriodUnit()
Returns the unit of the period.
|
int getPeriod()
Returns a period which specifies a time span within a year.
The returned period must be interpreted in conjunction
with the returned PeriodUnit
of getPeriodUnit()
.
getPeriodUnit()
returns PeriodUnit.MONTH
getPeriod()
returns 3
The returned period 3
must be interpreted as
the third month
of the year (i.e. it represents
the month March).
If the getPeriodUnit()
returns PeriodUnit.QUARTER
,
then the returned period 3
must be interpreted as the third
quarter
of the year.
PeriodUnit getPeriodUnit()
Returns the unit of the period.
PeriodUnit
getPeriod()
Copyright © 2022. All rights reserved.