@Generated public enum ImportFormat extends Enum<ImportFormat>
The value is case sensitive.
- `AUTO`: The item is imported depending on an analysis of the item's extension and the header content provided in the request. If the item is imported as a notebook, then the item's extension is automatically removed. - `SOURCE`: The notebook or directory is imported as source code. - `HTML`: The notebook is imported as an HTML file. - `JUPYTER`: The notebook is imported as a Jupyter/IPython Notebook file. - `DBC`: The notebook is imported in Databricks archive format. Required for directories. - `R_MARKDOWN`: The notebook is imported from R Markdown format.
Enum Constant and Description |
---|
AUTO |
DBC |
HTML |
JUPYTER |
R_MARKDOWN |
SOURCE |
Modifier and Type | Method and Description |
---|---|
static ImportFormat |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ImportFormat[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ImportFormat AUTO
public static final ImportFormat DBC
public static final ImportFormat HTML
public static final ImportFormat JUPYTER
public static final ImportFormat R_MARKDOWN
public static final ImportFormat SOURCE
public static ImportFormat[] values()
for (ImportFormat c : ImportFormat.values()) System.out.println(c);
public static ImportFormat valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2023. All rights reserved.