Package com.azure.compute.batch.models
Class DependencyAction
java.lang.Object
com.azure.core.util.ExpandableStringEnum<DependencyAction>
com.azure.compute.batch.models.DependencyAction
- All Implemented Interfaces:
com.azure.core.util.ExpandableEnum<String>
public final class DependencyAction
extends com.azure.core.util.ExpandableStringEnum<DependencyAction>
DependencyAction enums.
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final DependencyAction
Blocks tasks waiting on this task, preventing them from being scheduled.static final DependencyAction
Satisfy tasks waiting on this task; once all dependencies are satisfied, the task will be scheduled to run. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic DependencyAction
fromString
(String name) Creates or finds a DependencyAction from its string representation.static Collection
<DependencyAction> values()
Gets known DependencyAction values.Methods inherited from class com.azure.core.util.ExpandableStringEnum
equals, fromString, getValue, hashCode, toString, values
-
Field Details
-
SATISFY
Satisfy tasks waiting on this task; once all dependencies are satisfied, the task will be scheduled to run. -
BLOCK
Blocks tasks waiting on this task, preventing them from being scheduled.
-
-
Constructor Details
-
DependencyAction
Deprecated.Use thefromString(String)
factory method.Creates a new instance of DependencyAction value.
-
-
Method Details
-
fromString
Creates or finds a DependencyAction from its string representation.- Parameters:
name
- a name to look for.- Returns:
- the corresponding DependencyAction.
-
values
Gets known DependencyAction values.- Returns:
- known DependencyAction values.
-
fromString(String)
factory method.