Uses of Enum Class
com.atlassian.jira.charts.ChartFactory.PeriodName
Packages that use ChartFactory.PeriodName
Package
Description
-
Uses of ChartFactory.PeriodName in com.atlassian.jira.charts
Methods in com.atlassian.jira.charts that return ChartFactory.PeriodNameModifier and TypeMethodDescriptionstatic ChartFactory.PeriodNameReturns the enum constant of this class with the specified name.static ChartFactory.PeriodName[]ChartFactory.PeriodName.values()Returns an array containing the constants of this enum class, in the order they are declared.Methods in com.atlassian.jira.charts with parameters of type ChartFactory.PeriodNameModifier and TypeMethodDescriptionAverageAgeAggregator.computeAverageAge(ApplicationUser remoteUser, int days, ChartFactory.PeriodName periodName, Query query, Date endDate, TimeZone timeZone) ChartFactory.generateAverageAgeChart(ChartFactory.ChartContext context, int days, ChartFactory.PeriodName periodName) Generates what is essentially a bar chart showing the average time that issues have been open for over time.ChartFactory.generateAverageAgeChart(ChartFactory.ChartContext context, int days, String endDate, ChartFactory.PeriodName periodName) Generates what is essentially a bar chart showing the average time that issues have been open for over time.DefaultChartFactory.generateAverageAgeChart(ChartFactory.ChartContext context, int days, ChartFactory.PeriodName periodName) DefaultChartFactory.generateAverageAgeChart(ChartFactory.ChartContext context, int days, String endDate, ChartFactory.PeriodName periodName) ChartFactory.generateCreatedVsResolvedChart(ChartFactory.ChartContext context, int days, ChartFactory.PeriodName periodName, ChartFactory.VersionLabel versionLabels, boolean cumulative, boolean showUnresolvedTrend) Generates a created vs resolved line graph, showing the difference between created and resolved issues.ChartFactory.generateCreatedVsResolvedChart(ChartFactory.ChartContext context, int days, String endDate, ChartFactory.PeriodName periodName, ChartFactory.VersionLabel versionLabels, boolean cumulative, boolean showUnresolvedTrend) Generates a created vs resolved line graph, showing the difference between created and resolved issues.DefaultChartFactory.generateCreatedVsResolvedChart(ChartFactory.ChartContext context, int days, ChartFactory.PeriodName periodName, ChartFactory.VersionLabel versionLabel, boolean cumulative, boolean showUnresolvedTrend) DefaultChartFactory.generateCreatedVsResolvedChart(ChartFactory.ChartContext context, int days, String endDate, ChartFactory.PeriodName periodName, ChartFactory.VersionLabel versionLabel, boolean cumulative, boolean showUnresolvedTrend) ChartFactory.generateDateRangeTimeChart(ChartFactory.ChartContext context, int days, ChartFactory.PeriodName periodName, long yAxisTimePeriod, String labelSuffixKey, String dateFieldId) Generates a date range chart time, meaning a chart that shows time values for particular date ranges.ChartFactory.generateDateRangeTimeChart(ChartFactory.ChartContext context, int days, String endDate, ChartFactory.PeriodName periodName, long yAxisTimePeriod, String labelSuffixKey, String dateFieldId) Is the extension of theChartFactory.generateDateRangeTimeChart(ChartContext, int, PeriodName, long, String, String)interface that allows to specify the end date for the chart.DefaultChartFactory.generateDateRangeTimeChart(ChartFactory.ChartContext context, int days, ChartFactory.PeriodName periodName, long yAxisTimePeriod, String labelSuffixKey, String dateFieldId) DefaultChartFactory.generateDateRangeTimeChart(ChartFactory.ChartContext context, int days, String endDate, ChartFactory.PeriodName periodName, long yAxisTimePeriod, String labelSuffixKey, String dateFieldId) ChartFactory.generateRecentlyCreated(ChartFactory.ChartContext context, int days, ChartFactory.PeriodName periodName) Generates a stacked bar chart showing the number of created/resolved issues for a certain time period.ChartFactory.generateRecentlyCreated(ChartFactory.ChartContext context, int days, String endDate, ChartFactory.PeriodName periodName) Is the extension of theChartFactory.generateRecentlyCreated(ChartContext, int, PeriodName)interface that allows to specify the end date for the chart.DefaultChartFactory.generateRecentlyCreated(ChartFactory.ChartContext context, int days, ChartFactory.PeriodName periodName) DefaultChartFactory.generateRecentlyCreated(ChartFactory.ChartContext context, int days, String endDate, ChartFactory.PeriodName periodName) ChartFactory.generateTimeSinceChart(ChartFactory.ChartContext context, int days, ChartFactory.PeriodName periodName, boolean cumulative, String dateFieldId) Generates a chart showing the number of issues since a certain date field.ChartFactory.generateTimeSinceChart(ChartFactory.ChartContext context, int days, String endDate, ChartFactory.PeriodName periodName, boolean cumulative, String dateFieldId) Is the extension of theChartFactory.generateTimeSinceChart(ChartContext, int, PeriodName, boolean, String)interface that allows to specify the end date for the chart.DefaultChartFactory.generateTimeSinceChart(ChartFactory.ChartContext context, int days, ChartFactory.PeriodName periodName, boolean cumulative, String dateFieldId) DefaultChartFactory.generateTimeSinceChart(ChartFactory.ChartContext context, int days, String endDate, ChartFactory.PeriodName periodName, boolean cumulative, String dateFieldId) -
Uses of ChartFactory.PeriodName in com.atlassian.jira.charts.jfreechart.util
Methods in com.atlassian.jira.charts.jfreechart.util with parameters of type ChartFactory.PeriodNameModifier and TypeMethodDescriptionstatic ClassChartUtil.getTimePeriodClass(ChartFactory.PeriodName periodName) Note: This could be made part of the PeriodName Enum, however I don't want to leak any JFreeChart classes out of this package, which is why I'd like to keep it in this Util. -
Uses of ChartFactory.PeriodName in com.atlassian.jira.charts.util
Methods in com.atlassian.jira.charts.util with parameters of type ChartFactory.PeriodNameModifier and TypeMethodDescriptionstatic intDataUtils.normalizeDaysValue(int days, ChartFactory.PeriodName period) Trims days to a range of [1...MAX_FOR_PERIOD] where the max is defined in jira-application.properties for each period.static IntervalDataUtils.periodToInterval(ChartFactory.PeriodName periodName) Converts aChartFactory.PeriodNameto aInterval -
Uses of ChartFactory.PeriodName in com.atlassian.jira.functest.framework.backdoor
Methods in com.atlassian.jira.functest.framework.backdoor with parameters of type ChartFactory.PeriodNameModifier and TypeMethodDescriptioncom.atlassian.jira.testkit.client.restclient.ParsedResponse<AverageAgeData> ChartsControl.generateAverageAgeChart(String queryString, int days, String endDate, ChartFactory.PeriodName periodName) Generates the Average Age Chart.com.atlassian.jira.testkit.client.restclient.ParsedResponse<CreatedVsResolvedData> ChartsControl.generateCreatedVsResolvedChart(String queryString, int days, String endDate, ChartFactory.PeriodName periodName, boolean isCumulative, boolean showUnresolvedTrend) Generates the Created vs Resolved Chart.com.atlassian.jira.testkit.client.restclient.ParsedResponse<RecentlyCreatedData> ChartsControl.generateRecentlyCreatedChart(String queryString, int days, String endDate, ChartFactory.PeriodName periodName) Generates the Recently Created Chart.com.atlassian.jira.testkit.client.restclient.ParsedResponse<ResolutionTimeData> ChartsControl.generateResolutionTimeChart(String queryString, int days, String endDate, ChartFactory.PeriodName periodName) Generates the Resolution Time Chart based on Date Range Time Chart.com.atlassian.jira.testkit.client.restclient.ParsedResponse<TimeSinceData> ChartsControl.generateTimeSinceChart(String queryString, int days, String endDate, ChartFactory.PeriodName periodName, boolean isCumulative) com.atlassian.jira.testkit.client.restclient.ParsedResponse<TimeSinceData> ChartsControl.generateTimeSinceChart(String queryString, int days, String dateField, String endDate, ChartFactory.PeriodName periodName, boolean isCumulative) Generates the Time Since Chart. -
Uses of ChartFactory.PeriodName in com.atlassian.jira.gadgets.system.util
Methods in com.atlassian.jira.gadgets.system.util that return ChartFactory.PeriodNameModifier and TypeMethodDescriptionResourceDateValidator.validatePeriod(String fieldName, String periodName, Collection<ValidationError> errors) Methods in com.atlassian.jira.gadgets.system.util with parameters of type ChartFactory.PeriodNameModifier and TypeMethodDescriptionintResourceDateValidator.validateDaysPrevious(String fieldName, ChartFactory.PeriodName period, String days, Collection<ValidationError> errors)