-
- All Implemented Interfaces:
-
org.jetbrains.kotlinx.dataframe.jupyter.CellRenderer
public abstract class ChainedCellRenderer implements CellRenderer
-
-
Constructor Summary
Constructors Constructor Description ChainedCellRenderer(CellRenderer parent)
-
Method Summary
Modifier and Type Method Description abstract RenderedContentmaybeContent(Object value, DisplayConfiguration configuration)abstract StringmaybeTooltip(Object value, DisplayConfiguration configuration)RenderedContentcontent(Object value, DisplayConfiguration configuration)Returns value rendered to HTML text, or null if such rendering is impossible Stringtooltip(Object value, DisplayConfiguration configuration)Returns cell tooltip for this value -
-
Constructor Detail
-
ChainedCellRenderer
ChainedCellRenderer(CellRenderer parent)
-
-
Method Detail
-
maybeContent
abstract RenderedContent maybeContent(Object value, DisplayConfiguration configuration)
-
maybeTooltip
abstract String maybeTooltip(Object value, DisplayConfiguration configuration)
-
content
RenderedContent content(Object value, DisplayConfiguration configuration)
Returns value rendered to HTML text, or null if such rendering is impossible
-
tooltip
String tooltip(Object value, DisplayConfiguration configuration)
Returns cell tooltip for this value
-
-
-
-