Package moa.tasks.ipynb
Class NotebookBuilder
- java.lang.Object
-
- moa.tasks.ipynb.NotebookBuilder
-
public class NotebookBuilder extends Object
Manage the list of all cells Add new cells Create a Jupyter NotebookBuilder as IPYNB file- Author:
- Truong To (todinhtruong at gmail dot com)
-
-
Constructor Summary
Constructors Constructor Description NotebookBuilder()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description NotebookCellBuilder
addCode()
NotebookCellBuilder
addMarkdown()
NotebookCellBuilder
addRaw()
String
build()
NotebookCellBuilder
getCellByIndex(int index)
NotebookCellBuilder
getLastCell()
-
-
-
Method Detail
-
build
public String build()
-
addCode
public NotebookCellBuilder addCode()
-
addMarkdown
public NotebookCellBuilder addMarkdown()
-
addRaw
public NotebookCellBuilder addRaw()
-
getLastCell
public NotebookCellBuilder getLastCell()
-
getCellByIndex
public NotebookCellBuilder getCellByIndex(int index)
-
-