|
||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<HungarianAlgorithm.OptimizationType>
info.mrupp.isoak1.HungarianAlgorithm.OptimizationType
public static enum HungarianAlgorithm.OptimizationType
Optimization type (either minimization or maximization of the assignment value).
Enum Constant Summary | |
---|---|
MAX
The assignment value is maximized. |
|
MIN
The assignment value is minimized. |
Method Summary | |
---|---|
static HungarianAlgorithm.OptimizationType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static HungarianAlgorithm.OptimizationType[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
compareTo, equals, 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 HungarianAlgorithm.OptimizationType MAX
public static final HungarianAlgorithm.OptimizationType MIN
Method Detail |
---|
public static HungarianAlgorithm.OptimizationType valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.
java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified name
java.lang.NullPointerException
- if the argument is nullpublic static HungarianAlgorithm.OptimizationType[] values()
for (HungarianAlgorithm.OptimizationType c : HungarianAlgorithm.OptimizationType.values()) System.out.println(c);
|
||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |