Interface RenderableChart
-
- All Known Implementing Classes:
DeclarativeCompositeValueType
,RenderableChartImpl
public interface RenderableChart
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description Map<String,String>
getAdditionalProperties()
String
getDefaultFilter()
String
getHideFilters()
String
getHints()
default String
getKey()
SProject
getOwnerProject()
The project where exists this chart or Root Project.SBuildType
getSourceBuildType()
Source build type for this chart.String
getTitle()
ValueType
getValueType()
boolean
isModifiable()
-
-
-
Method Detail
-
getHideFilters
@NotNull String getHideFilters()
-
getDefaultFilter
@NotNull String getDefaultFilter()
-
getOwnerProject
@Nullable SProject getOwnerProject()
The project where exists this chart or Root Project. Should not be null normally. All charts with null owner project will be ignored during rendering.- Returns:
-
getSourceBuildType
@Nullable SBuildType getSourceBuildType()
Source build type for this chart. Null if build type should be taken from the context or is handled by ValueType itself (likeDeclarativeCompositeValueType
).- Returns:
-
getKey
@NotNull default String getKey()
-
getValueType
@NotNull ValueType getValueType()
-
isModifiable
boolean isModifiable()
-
getHints
@NotNull String getHints()
-
getTitle
@NotNull String getTitle()
-
-