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