@Portable public enum ConstructionHeuristicTypeModel extends Enum<ConstructionHeuristicTypeModel>
Enum Constant and Description |
---|
ALLOCATE_ENTITY_FROM_QUEUE |
ALLOCATE_FROM_POOL |
ALLOCATE_TO_VALUE_FROM_QUEUE |
CHEAPEST_INSERTION |
FIRST_FIT |
FIRST_FIT_DECREASING |
STRONGEST_FIT |
STRONGEST_FIT_DECREASING |
WEAKEST_FIT |
WEAKEST_FIT_DECREASING |
Modifier and Type | Method and Description |
---|---|
static ConstructionHeuristicTypeModel |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ConstructionHeuristicTypeModel[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ConstructionHeuristicTypeModel FIRST_FIT
public static final ConstructionHeuristicTypeModel FIRST_FIT_DECREASING
public static final ConstructionHeuristicTypeModel WEAKEST_FIT
public static final ConstructionHeuristicTypeModel WEAKEST_FIT_DECREASING
public static final ConstructionHeuristicTypeModel STRONGEST_FIT
public static final ConstructionHeuristicTypeModel STRONGEST_FIT_DECREASING
public static final ConstructionHeuristicTypeModel ALLOCATE_ENTITY_FROM_QUEUE
public static final ConstructionHeuristicTypeModel ALLOCATE_TO_VALUE_FROM_QUEUE
public static final ConstructionHeuristicTypeModel CHEAPEST_INSERTION
public static final ConstructionHeuristicTypeModel ALLOCATE_FROM_POOL
public static ConstructionHeuristicTypeModel[] values()
for (ConstructionHeuristicTypeModel c : ConstructionHeuristicTypeModel.values()) System.out.println(c);
public static ConstructionHeuristicTypeModel 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 nullCopyright © 2001–2020 JBoss by Red Hat. All rights reserved.