DependencyAction Class
- java.
lang. Object - com.
azure. core. util. ExpandableStringEnum<T> - com.
azure. compute. batch. models. DependencyAction
- com.
- com.
public final class DependencyAction
extends ExpandableStringEnum<DependencyAction>
DependencyAction enums.
Field Summary
| Modifier and Type | Field and Description |
|---|---|
|
static final
Dependency |
BLOCK
Blocks tasks waiting on this task, preventing them from being scheduled. |
|
static final
Dependency |
SATISFY
Satisfy tasks waiting on this task; once all dependencies are satisfied, the task will be scheduled to run. |
Constructor Summary
| Constructor | Description |
|---|---|
| DependencyAction() |
Deprecated
Use the fromString(String name) factory method.
Creates a new instance of Dependency |
Method Summary
| Modifier and Type | Method and Description |
|---|---|
|
static
Dependency |
fromString(String name)
Creates or finds a Dependency |
|
static
Collection<Dependency |
values()
Gets known Dependency |
Methods inherited from ExpandableStringEnum
Methods inherited from java.lang.Object
Field Details
BLOCK
public static final DependencyAction BLOCK
Blocks tasks waiting on this task, preventing them from being scheduled.
SATISFY
public static final DependencyAction SATISFY
Satisfy tasks waiting on this task; once all dependencies are satisfied, the task will be scheduled to run.
Constructor Details
DependencyAction
@Deprecated
public DependencyAction()
Deprecated
Creates a new instance of DependencyAction value.
Method Details
fromString
public static DependencyAction fromString(String name)
Creates or finds a DependencyAction from its string representation.
Parameters:
Returns:
values
public static Collection<DependencyAction> values()
Gets known DependencyAction values.
Returns: