Class NotebookCell
- java.lang.Object
-
- io.datahubproject.openapi.generated.NotebookCell
-
@Validated @Generated(value="io.swagger.codegen.v3.generators.java.SpringCodegen", date="2022-10-18T12:49:45.903581Z[Etc/UTC]") public class NotebookCell extends java.lang.ObjectA record of all supported cells for a Notebook. Only one type of cell will be non-null.
-
-
Constructor Summary
Constructors Constructor Description NotebookCell()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description NotebookCellchartCell(ChartCell chartCell)booleanequals(java.lang.Object o)@Valid ChartCellgetChartCell()Get chartCell@Valid QueryCellgetQueryCell()Get queryCell@Valid TextCellgetTextCell()Get textCell@NotNull @Valid NotebookCellTypegetType()Get typeinthashCode()NotebookCellqueryCell(QueryCell queryCell)voidsetChartCell(ChartCell chartCell)voidsetQueryCell(QueryCell queryCell)voidsetTextCell(TextCell textCell)voidsetType(NotebookCellType type)NotebookCelltextCell(TextCell textCell)java.lang.StringtoString()NotebookCelltype(NotebookCellType type)
-
-
-
Method Detail
-
textCell
public NotebookCell textCell(TextCell textCell)
-
getTextCell
@Valid public @Valid TextCell getTextCell()
Get textCell- Returns:
- textCell
-
setTextCell
public void setTextCell(TextCell textCell)
-
queryCell
public NotebookCell queryCell(QueryCell queryCell)
-
getQueryCell
@Valid public @Valid QueryCell getQueryCell()
Get queryCell- Returns:
- queryCell
-
setQueryCell
public void setQueryCell(QueryCell queryCell)
-
chartCell
public NotebookCell chartCell(ChartCell chartCell)
-
getChartCell
@Valid public @Valid ChartCell getChartCell()
Get chartCell- Returns:
- chartCell
-
setChartCell
public void setChartCell(ChartCell chartCell)
-
type
public NotebookCell type(NotebookCellType type)
-
getType
@NotNull @Valid public @NotNull @Valid NotebookCellType getType()
Get type- Returns:
- type
-
setType
public void setType(NotebookCellType type)
-
equals
public boolean equals(java.lang.Object o)
- Overrides:
equalsin classjava.lang.Object
-
hashCode
public int hashCode()
- Overrides:
hashCodein classjava.lang.Object
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
-