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(java.lang.String name,
StatisticsCollector collector)
Add an specific
StatisticsCollector to the view identified by name. |
boolean |
addView(java.lang.String name,
java.util.List<StatisticsCollector> collectors)
Add a view called name with the
StatisticsCollectors to this chart. |
boolean |
containsLine(java.lang.String name)
Checks if the chart contains a
StatisticsCollector called name. |
AggregatedStatisticsCollector |
getAggregatedCollector(java.lang.String aggregatedName)
Get all collectors that do not collect data itself but just aggregate data collected by other collectors.
|
java.util.List<AggregatedStatisticsCollector> |
getAggregatedLines()
Get only lines of type
AggregatedStatisticsCollector. |
java.util.List<AggregatedStatisticsCollector> |
getAllAggregatedCollectors()
Get all aggregated collectors contained in this chart.
|
java.util.List<StatisticsCollector> |
getAllLines()
Get All
StatisticsCollectors from this chart. |
java.util.List<BasicStatisticsCollector> |
getBasicLines()
Get only lines of type
BasicStatisticsCollector. |
StatisticsCollector |
getLine(java.lang.String name)
Get a specific line from this chart, identified by name.
|
int |
getLineCount()
Get the number of registered
StatisticsCollectors. |
java.lang.String |
getName()
Get the name of this
StatisticsChart. |
java.util.List<StatisticsCollector> |
getViewLines(java.lang.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(java.lang.String name)
name - The name of the StatisticsCollector you want to get.StatisticsCollector with Name name.boolean containsLine(java.lang.String name)
StatisticsCollector called name.java.util.List<StatisticsCollector> getAllLines()
StatisticsCollectors from this chart.StatisticsCollector> containing all StatisticsCollectors.java.util.List<BasicStatisticsCollector> getBasicLines()
BasicStatisticsCollector.java.util.List<AggregatedStatisticsCollector> getAggregatedLines()
AggregatedStatisticsCollector.int getLineCount()
StatisticsCollectors.java.lang.String getName()
StatisticsChart.StatisticsChart.java.util.List<StatisticsCollector> getViewLines(java.lang.String view)
view - The name of the view that you want to get the StatisticsCollectors from.java.util.List<AggregatedStatisticsCollector> getAllAggregatedCollectors()
StatisticsCollectors.AggregatedStatisticsCollector getAggregatedCollector(java.lang.String aggregatedName)
boolean addAggregatedCollector(AggregatedStatisticsCollector collector)
collector - The AggregatedStatisticsCollector to add to the chart.boolean addView(java.lang.String name,
java.util.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(java.lang.String name,
StatisticsCollector collector)
StatisticsCollector to the view identified by name.Copyright © 2018 SAP SE. All Rights Reserved.