public enum ConstructionHeuristicType extends Enum<ConstructionHeuristicType>
| Enum Constant and Description |
|---|
ALLOCATE_ENTITY_FROM_QUEUE
Put all entities in a queue.
|
ALLOCATE_FROM_POOL
Put all entity-value combinations in a pool.
|
ALLOCATE_TO_VALUE_FROM_QUEUE
Put all values in a round-robin queue.
|
CHEAPEST_INSERTION
A specific form of
ALLOCATE_FROM_POOL. |
FIRST_FIT
A specific form of
ALLOCATE_ENTITY_FROM_QUEUE. |
FIRST_FIT_DECREASING
A specific form of
ALLOCATE_ENTITY_FROM_QUEUE. |
STRONGEST_FIT
A specific form of
ALLOCATE_ENTITY_FROM_QUEUE. |
STRONGEST_FIT_DECREASING
A specific form of
ALLOCATE_ENTITY_FROM_QUEUE. |
WEAKEST_FIT
A specific form of
ALLOCATE_ENTITY_FROM_QUEUE. |
WEAKEST_FIT_DECREASING
A specific form of
ALLOCATE_ENTITY_FROM_QUEUE. |
| Modifier and Type | Method and Description |
|---|---|
static ConstructionHeuristicType[] |
getBluePrintTypes() |
EntitySorterManner |
getDefaultEntitySorterManner() |
ValueSorterManner |
getDefaultValueSorterManner() |
static ConstructionHeuristicType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ConstructionHeuristicType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ConstructionHeuristicType FIRST_FIT
ALLOCATE_ENTITY_FROM_QUEUE.public static final ConstructionHeuristicType FIRST_FIT_DECREASING
ALLOCATE_ENTITY_FROM_QUEUE.public static final ConstructionHeuristicType WEAKEST_FIT
ALLOCATE_ENTITY_FROM_QUEUE.public static final ConstructionHeuristicType WEAKEST_FIT_DECREASING
ALLOCATE_ENTITY_FROM_QUEUE.public static final ConstructionHeuristicType STRONGEST_FIT
ALLOCATE_ENTITY_FROM_QUEUE.public static final ConstructionHeuristicType STRONGEST_FIT_DECREASING
ALLOCATE_ENTITY_FROM_QUEUE.public static final ConstructionHeuristicType ALLOCATE_ENTITY_FROM_QUEUE
public static final ConstructionHeuristicType ALLOCATE_TO_VALUE_FROM_QUEUE
public static final ConstructionHeuristicType CHEAPEST_INSERTION
ALLOCATE_FROM_POOL.public static final ConstructionHeuristicType ALLOCATE_FROM_POOL
public static ConstructionHeuristicType[] values()
for (ConstructionHeuristicType c : ConstructionHeuristicType.values()) System.out.println(c);
public static ConstructionHeuristicType 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 EntitySorterManner getDefaultEntitySorterManner()
public ValueSorterManner getDefaultValueSorterManner()
public static ConstructionHeuristicType[] getBluePrintTypes()
values() without duplicates (abstract types that end up behaving as one of the
other types).Copyright © 2006–2021 JBoss by Red Hat. All rights reserved.