@Generated public enum ListRunsRunType extends Enum<ListRunsRunType>
[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 ListRunsRunType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ListRunsRunType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ListRunsRunType JOB_RUN
public static final ListRunsRunType SUBMIT_RUN
public static final ListRunsRunType WORKFLOW_RUN
public static ListRunsRunType[] values()
for (ListRunsRunType c : ListRunsRunType.values()) System.out.println(c);
public static ListRunsRunType 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.