public enum ResourceAssignStrategyType extends Enum<ResourceAssignStrategyType>
| Enum Constant and Description |
|---|
PIPELINE_FIRST_STRATEGY
Resource scheduling strategy based on FF(First Fit) algorithm and pipeline.
|
| Modifier and Type | Method and Description |
|---|---|
String |
getName() |
static ResourceAssignStrategyType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ResourceAssignStrategyType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ResourceAssignStrategyType PIPELINE_FIRST_STRATEGY
public static ResourceAssignStrategyType[] values()
for (ResourceAssignStrategyType c : ResourceAssignStrategyType.values()) System.out.println(c);
public static ResourceAssignStrategyType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic String getName()
Copyright © 2021. All rights reserved.