Skip to content
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ public interface DataProvider {
* The provider types.
*/
enum ProviderType {
TABLE, TREE_TIME_XY, TIME_GRAPH, DATA_TREE, NONE
TABLE, TREE_TIME_XY, TIME_GRAPH, DATA_TREE, NONE, GANTT_CHART
}

/**
Expand All @@ -41,9 +41,10 @@ enum ProviderType {
* @return The type.
*/
@Schema(description = "Type of data returned by this output. " +
"Serves as a hint to determine what kind of view should be used for this output (ex. XY, Time Graph, Table, etc..). " +
"Serves as a hint to determine what kind of view should be used for this output (ex. XY, Time Graph, Table, Gantt chart, etc..). " +
"Providers of type TREE_TIME_XY and TIME_GRAPH can be grouped under the same time axis. " +
"Providers of type DATA_TREE only provide a tree with columns and don't have any XY nor time graph data associated with it. " +
"Providers of type GANTT_CHART use the as endpoint as TIME_GRAPH, but have a different x-axis (duration, page faults, etc.), with their own separate ranges and controllers. " +
"Providers of type NONE have no data to visualize. Can be used for grouping purposes and/or as data provider configurator.")
ProviderType getType();

Expand Down
Loading