de.unihalle.informatik.MiToBo.math.optimization
Enum MatchingBipartite_HungarianAlgorithm.ScoreInterpretation

java.lang.Object
  extended by java.lang.Enum<MatchingBipartite_HungarianAlgorithm.ScoreInterpretation>
      extended by de.unihalle.informatik.MiToBo.math.optimization.MatchingBipartite_HungarianAlgorithm.ScoreInterpretation
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<MatchingBipartite_HungarianAlgorithm.ScoreInterpretation>
Enclosing class:
MatchingBipartite_HungarianAlgorithm

public static enum MatchingBipartite_HungarianAlgorithm.ScoreInterpretation
extends java.lang.Enum<MatchingBipartite_HungarianAlgorithm.ScoreInterpretation>

Matrix scores interpretation.

Author:
moeller

Enum Constant Summary
MAXIMUM_IS_BEST
          Indicates that scores are better if larger.
MINIMUM_IS_BEST
          Indicates that scores are better if smaller.
 
Method Summary
static MatchingBipartite_HungarianAlgorithm.ScoreInterpretation valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static MatchingBipartite_HungarianAlgorithm.ScoreInterpretation[] 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

MAXIMUM_IS_BEST

public static final MatchingBipartite_HungarianAlgorithm.ScoreInterpretation MAXIMUM_IS_BEST
Indicates that scores are better if larger.


MINIMUM_IS_BEST

public static final MatchingBipartite_HungarianAlgorithm.ScoreInterpretation MINIMUM_IS_BEST
Indicates that scores are better if smaller.

Method Detail

valueOf

public static MatchingBipartite_HungarianAlgorithm.ScoreInterpretation valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Parameters:
name - the name of the enum constant to be returned.
Returns:
the enum constant with the specified name
Throws:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
java.lang.NullPointerException - if the argument is null

values

public static MatchingBipartite_HungarianAlgorithm.ScoreInterpretation[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
for (MatchingBipartite_HungarianAlgorithm.ScoreInterpretation c : MatchingBipartite_HungarianAlgorithm.ScoreInterpretation.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared