Package com.databricks.sdk.service.jobs
Enum RunIf
- java.lang.Object
-
- java.lang.Enum<RunIf>
-
- com.databricks.sdk.service.jobs.RunIf
-
- All Implemented Interfaces:
Serializable,Comparable<RunIf>
@Generated public enum RunIf extends Enum<RunIf>
This describes an enum
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ALL_DONEALL_FAILEDALL_SUCCESSAT_LEAST_ONE_FAILEDAT_LEAST_ONE_SUCCESSNONE_FAILED
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static RunIfvalueOf(String name)Returns the enum constant of this type with the specified name.static RunIf[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ALL_DONE
public static final RunIf ALL_DONE
-
ALL_FAILED
public static final RunIf ALL_FAILED
-
ALL_SUCCESS
public static final RunIf ALL_SUCCESS
-
AT_LEAST_ONE_FAILED
public static final RunIf AT_LEAST_ONE_FAILED
-
AT_LEAST_ONE_SUCCESS
public static final RunIf AT_LEAST_ONE_SUCCESS
-
NONE_FAILED
public static final RunIf NONE_FAILED
-
-
Method Detail
-
values
public static RunIf[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (RunIf c : RunIf.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static RunIf valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
-