@Generated public enum RunType extends Enum<RunType>
[dbutils.notebook.run]: https://docs.databricks.com/dev-tools/databricks-utils.html#dbutils-workflow
| Enum Constant and Description |
|---|
JOB_RUN |
SUBMIT_RUN |
WORKFLOW_RUN |
| Modifier and Type | Method and Description |
|---|---|
static RunType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RunType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RunType JOB_RUN
public static final RunType SUBMIT_RUN
public static final RunType WORKFLOW_RUN
public static RunType[] values()
for (RunType c : RunType.values()) System.out.println(c);
public static RunType 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 © 2024. All rights reserved.