public static enum Code.RunType extends Enum<Code.RunType>
| Enum Constant and Description |
|---|
DATABRICKS |
JOB |
JUPYTER |
| Modifier and Type | Method and Description |
|---|---|
static Code.RunType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Code.RunType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Code.RunType JUPYTER
public static final Code.RunType JOB
public static final Code.RunType DATABRICKS
public static Code.RunType[] values()
for (Code.RunType c : Code.RunType.values()) System.out.println(c);
public static Code.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 © 2023. All rights reserved.