Class QueryCell
- java.lang.Object
-
- io.datahubproject.openapi.generated.QueryCell
-
@Validated @Generated(value="io.swagger.codegen.v3.generators.java.SpringCodegen", date="2023-12-06T11:25:47.362934Z[Etc/UTC]") public class QueryCell extends java.lang.ObjectQuery cell in a Notebook, which will present content in query format
-
-
Constructor Summary
Constructors Constructor Description QueryCell()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description QueryCellcellId(java.lang.String cellId)QueryCellcellTitle(java.lang.String cellTitle)QueryCellchangeAuditStamps(ChangeAuditStamps changeAuditStamps)booleanequals(java.lang.Object o)@NotNull java.lang.StringgetCellId()Unique id for the cell.java.lang.StringgetCellTitle()Title of the cell@NotNull @Valid ChangeAuditStampsgetChangeAuditStamps()Get changeAuditStamps@Valid AuditStampgetLastExecuted()Get lastExecuted@NotNull java.lang.StringgetRawQuery()Raw query to explain some specific logic in a NotebookinthashCode()QueryCelllastExecuted(AuditStamp lastExecuted)QueryCellrawQuery(java.lang.String rawQuery)voidsetCellId(java.lang.String cellId)voidsetCellTitle(java.lang.String cellTitle)voidsetChangeAuditStamps(ChangeAuditStamps changeAuditStamps)voidsetLastExecuted(AuditStamp lastExecuted)voidsetRawQuery(java.lang.String rawQuery)java.lang.StringtoString()
-
-
-
Method Detail
-
cellTitle
public QueryCell cellTitle(java.lang.String cellTitle)
-
getCellTitle
public java.lang.String getCellTitle()
Title of the cell- Returns:
- cellTitle
-
setCellTitle
public void setCellTitle(java.lang.String cellTitle)
-
cellId
public QueryCell cellId(java.lang.String cellId)
-
getCellId
@NotNull public @NotNull java.lang.String getCellId()
Unique id for the cell. This id should be globally unique for a Notebook tool even when there are multiple deployments of it. As an example, Notebook URL could be used here for QueryBook such as 'querybook.com/notebook/773/?cellId=1234'- Returns:
- cellId
-
setCellId
public void setCellId(java.lang.String cellId)
-
changeAuditStamps
public QueryCell changeAuditStamps(ChangeAuditStamps changeAuditStamps)
-
getChangeAuditStamps
@NotNull @Valid public @NotNull @Valid ChangeAuditStamps getChangeAuditStamps()
Get changeAuditStamps- Returns:
- changeAuditStamps
-
setChangeAuditStamps
public void setChangeAuditStamps(ChangeAuditStamps changeAuditStamps)
-
rawQuery
public QueryCell rawQuery(java.lang.String rawQuery)
-
getRawQuery
@NotNull public @NotNull java.lang.String getRawQuery()
Raw query to explain some specific logic in a Notebook- Returns:
- rawQuery
-
setRawQuery
public void setRawQuery(java.lang.String rawQuery)
-
lastExecuted
public QueryCell lastExecuted(AuditStamp lastExecuted)
-
getLastExecuted
@Valid public @Valid AuditStamp getLastExecuted()
Get lastExecuted- Returns:
- lastExecuted
-
setLastExecuted
public void setLastExecuted(AuditStamp lastExecuted)
-
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
-
-