public enum LocalSearchPickEarlyType extends Enum<LocalSearchPickEarlyType>
| Enum Constant and Description |
|---|
FIRST_BEST_SCORE_IMPROVING |
FIRST_LAST_STEP_SCORE_IMPROVING |
NEVER |
| Modifier and Type | Method and Description |
|---|---|
static LocalSearchPickEarlyType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LocalSearchPickEarlyType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LocalSearchPickEarlyType NEVER
public static final LocalSearchPickEarlyType FIRST_BEST_SCORE_IMPROVING
public static final LocalSearchPickEarlyType FIRST_LAST_STEP_SCORE_IMPROVING
public static LocalSearchPickEarlyType[] values()
for (LocalSearchPickEarlyType c : LocalSearchPickEarlyType.values()) System.out.println(c);
public static LocalSearchPickEarlyType 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 © 2006–2021 JBoss by Red Hat. All rights reserved.