public interface StatisticsChart
| Modifier and Type | Method and Description |
|---|---|
boolean |
addAggregatedCollector(AggregatedStatisticsCollector collector)
Add an aggregated collector to the chart.
|
boolean |
addLine(StatisticsCollector collector)
Add a
AbstractStatisticsCollector to this chart. |
boolean |
addLinetoView(String name,
StatisticsCollector collector)
Add an specific
StatisticsCollector to the view identified by name. |
boolean |
addView(String name,
List<StatisticsCollector> collectors)
Add a view called name with the
StatisticsCollectors to this chart. |
boolean |
containsLine(String name)
Checks if the chart contains a
StatisticsCollector called name. |
AggregatedStatisticsCollector |
getAggregatedCollector(String aggregatedName)
Get all collectors that do not collect data itself but just aggregate data collected by other collectors.
|
List<AggregatedStatisticsCollector> |
getAggregatedLines()
Get only lines of type
AggregatedStatisticsCollector. |
List<AggregatedStatisticsCollector> |
getAllAggregatedCollectors()
Get all aggregated collectors contained in this chart.
|
List<StatisticsCollector> |
getAllLines()
Get All
StatisticsCollectors from this chart. |
List<BasicStatisticsCollector> |
getBasicLines()
Get only lines of type
BasicStatisticsCollector. |
StatisticsCollector |
getLine(String name)
Get a specific line from this chart, identified by name.
|
int |
getLineCount()
Get the number of registered
StatisticsCollectors. |
String |
getName()
Get the name of this
StatisticsChart. |
List<StatisticsCollector> |
getViewLines(String view)
Get all lines contained in view.
|
boolean |
removeLine(StatisticsCollector collector)
Removes
AbstractStatisticsCollector identified by name from this chart. |
boolean addLine(StatisticsCollector collector)
AbstractStatisticsCollector to this chart.AbstractStatisticsCollector was successful.boolean removeLine(StatisticsCollector collector)
AbstractStatisticsCollector identified by name from this chart.collector - The collector to remove.StatisticsCollector getLine(String name)
name - The name of the StatisticsCollector you want to get.StatisticsCollector with Name name.boolean containsLine(String name)
StatisticsCollector called name.List<StatisticsCollector> getAllLines()
StatisticsCollectors from this chart.StatisticsCollector> containing all StatisticsCollectors.List<BasicStatisticsCollector> getBasicLines()
BasicStatisticsCollector.List<AggregatedStatisticsCollector> getAggregatedLines()
AggregatedStatisticsCollector.int getLineCount()
StatisticsCollectors.String getName()
StatisticsChart.StatisticsChart.List<StatisticsCollector> getViewLines(String view)
view - The name of the view that you want to get the StatisticsCollectors from.List<AggregatedStatisticsCollector> getAllAggregatedCollectors()
StatisticsCollectors.AggregatedStatisticsCollector getAggregatedCollector(String aggregatedName)
boolean addAggregatedCollector(AggregatedStatisticsCollector collector)
collector - The AggregatedStatisticsCollector to add to the chart.boolean addView(String name, List<StatisticsCollector> collectors)
StatisticsCollectors to this chart.name - The name of the view to add.collectors - The collectors to add to the view.boolean addLinetoView(String name, StatisticsCollector collector)
StatisticsCollector to the view identified by name.Copyright © 2017 SAP SE. All Rights Reserved.