|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES All Classes | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<ConstraintManager.Decomposition>
de.jstacs.sequenceScores.statisticalModels.trainable.discrete.ConstraintManager.Decomposition
public static enum ConstraintManager.Decomposition
This enum defines the different possible types of decomposition of a model.
Enum Constant Summary | |
---|---|
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. |
Method Summary | |
---|---|
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. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final ConstraintManager.Decomposition DECOMPOSE_NOTHING
public static final ConstraintManager.Decomposition DECOMPOSE_UNCONNECTED
public static final ConstraintManager.Decomposition DECOMPOSE_LESS_CONNECTED
Method Detail |
---|
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 name
NullPointerException
- if the argument is null
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES All Classes | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |