public static enum MatchingBipartite_HungarianAlgorithm.ScoreInterpretation extends Enum<MatchingBipartite_HungarianAlgorithm.ScoreInterpretation>
Enum Constant and Description |
---|
MAXIMUM_IS_BEST
Indicates that scores are better if larger.
|
MINIMUM_IS_BEST
Indicates that scores are better if smaller.
|
Modifier and Type | Method and Description |
---|---|
static MatchingBipartite_HungarianAlgorithm.ScoreInterpretation |
valueOf(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.
|
public static final MatchingBipartite_HungarianAlgorithm.ScoreInterpretation MINIMUM_IS_BEST
public static final MatchingBipartite_HungarianAlgorithm.ScoreInterpretation MAXIMUM_IS_BEST
public static MatchingBipartite_HungarianAlgorithm.ScoreInterpretation[] values()
for (MatchingBipartite_HungarianAlgorithm.ScoreInterpretation c : MatchingBipartite_HungarianAlgorithm.ScoreInterpretation.values()) System.out.println(c);
public static MatchingBipartite_HungarianAlgorithm.ScoreInterpretation 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 © 2010–2020 Martin Luther University Halle-Wittenberg, Institute of Computer Science, Pattern Recognition and Bioinformatics. All rights reserved.