public enum ValueSorterManner extends Enum<ValueSorterManner>
PlanningVariable.| Enum Constant and Description |
|---|
DECREASING_STRENGTH |
DECREASING_STRENGTH_IF_AVAILABLE |
INCREASING_STRENGTH |
INCREASING_STRENGTH_IF_AVAILABLE |
NONE |
| Modifier and Type | Method and Description |
|---|---|
static ValueSorterManner |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ValueSorterManner[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ValueSorterManner NONE
public static final ValueSorterManner INCREASING_STRENGTH
public static final ValueSorterManner INCREASING_STRENGTH_IF_AVAILABLE
public static final ValueSorterManner DECREASING_STRENGTH
public static final ValueSorterManner DECREASING_STRENGTH_IF_AVAILABLE
public static ValueSorterManner[] values()
for (ValueSorterManner c : ValueSorterManner.values()) System.out.println(c);
public static ValueSorterManner 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.