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