Package com.databricks.sdk.service.ml
Enum ActivityAction
- java.lang.Object
-
- java.lang.Enum<ActivityAction>
-
- com.databricks.sdk.service.ml.ActivityAction
-
- All Implemented Interfaces:
Serializable
,Comparable<ActivityAction>
@Generated public enum ActivityAction extends Enum<ActivityAction>
This describes an enum
-
-
Enum Constant Summary
Enum Constants Enum Constant Description APPROVE_TRANSITION_REQUEST
CANCEL_TRANSITION_REQUEST
REJECT_TRANSITION_REQUEST
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ActivityAction
valueOf(String name)
Returns the enum constant of this type with the specified name.static ActivityAction[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
APPROVE_TRANSITION_REQUEST
public static final ActivityAction APPROVE_TRANSITION_REQUEST
-
CANCEL_TRANSITION_REQUEST
public static final ActivityAction CANCEL_TRANSITION_REQUEST
-
REJECT_TRANSITION_REQUEST
public static final ActivityAction REJECT_TRANSITION_REQUEST
-
-
Method Detail
-
values
public static ActivityAction[] 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 (ActivityAction c : ActivityAction.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ActivityAction 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
-
-