Package com.databricks.sdk.service.jobs
Enum JobsHealthOperator
- java.lang.Object
-
- java.lang.Enum<JobsHealthOperator>
-
- com.databricks.sdk.service.jobs.JobsHealthOperator
-
- All Implemented Interfaces:
Serializable,Comparable<JobsHealthOperator>
@Generated public enum JobsHealthOperator extends Enum<JobsHealthOperator>
Specifies the operator used to compare the health metric value with the specified threshold.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description GREATER_THAN
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static JobsHealthOperatorvalueOf(String name)Returns the enum constant of this type with the specified name.static JobsHealthOperator[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
GREATER_THAN
public static final JobsHealthOperator GREATER_THAN
-
-
Method Detail
-
values
public static JobsHealthOperator[] 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 (JobsHealthOperator c : JobsHealthOperator.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static JobsHealthOperator 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
-
-