public enum PlanningVariableGraphType extends Enum<PlanningVariableGraphType>
Enum Constant and Description |
---|
CHAINED
Changes to this variable need to trigger chain correction.
|
NONE
This is de default.
|
Modifier and Type | Method and Description |
---|---|
static PlanningVariableGraphType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PlanningVariableGraphType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PlanningVariableGraphType NONE
public static final PlanningVariableGraphType CHAINED
PlanningVariable.nullable()
true is not compatible with this.public static PlanningVariableGraphType[] values()
for (PlanningVariableGraphType c : PlanningVariableGraphType.values()) System.out.println(c);
public static PlanningVariableGraphType 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-2015 JBoss by Red Hat. All Rights Reserved.