public static enum ConstraintManager.Decomposition extends Enum<ConstraintManager.Decomposition>
| Enum Constant and Description |
|---|
DECOMPOSE_LESS_CONNECTED
This value indicates that the model should be decomposed in components that were connected, but
could be separated.
|
DECOMPOSE_NOTHING
This value indicates that the model should have only one component.
|
DECOMPOSE_UNCONNECTED
This value indicates that the model should be decomposed in its unconnected components.
|
| Modifier and Type | Method and Description |
|---|---|
static ConstraintManager.Decomposition |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ConstraintManager.Decomposition[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ConstraintManager.Decomposition DECOMPOSE_NOTHING
public static final ConstraintManager.Decomposition DECOMPOSE_UNCONNECTED
public static final ConstraintManager.Decomposition DECOMPOSE_LESS_CONNECTED
public static ConstraintManager.Decomposition[] values()
for (ConstraintManager.Decomposition c : ConstraintManager.Decomposition.values()) System.out.println(c);
public static ConstraintManager.Decomposition 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 null