public enum AlgorithmCategory extends Enum<AlgorithmCategory>
| Enum Constant and Description |
|---|
CLUSTERERS |
DISTRIBUTIONS |
EVALUATORS |
MODELS |
TRANSDUCERS |
| Modifier and Type | Method and Description |
|---|---|
static AlgorithmCategory |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AlgorithmCategory[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AlgorithmCategory DISTRIBUTIONS
public static final AlgorithmCategory EVALUATORS
public static final AlgorithmCategory MODELS
public static final AlgorithmCategory TRANSDUCERS
public static final AlgorithmCategory CLUSTERERS
public static AlgorithmCategory[] values()
for (AlgorithmCategory c : AlgorithmCategory.values()) System.out.println(c);
public static AlgorithmCategory 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 © 2016. All Rights Reserved.