public static enum ClassifierPanel.TestMode extends java.lang.Enum<ClassifierPanel.TestMode>
| Enum Constant and Description |
|---|
CROSS_VALIDATION |
PERCENTAGE_SPLIT |
SEPARATE_TEST_SET |
USE_TRAINING_SET |
| Modifier and Type | Method and Description |
|---|---|
static ClassifierPanel.TestMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ClassifierPanel.TestMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ClassifierPanel.TestMode CROSS_VALIDATION
public static final ClassifierPanel.TestMode PERCENTAGE_SPLIT
public static final ClassifierPanel.TestMode USE_TRAINING_SET
public static final ClassifierPanel.TestMode SEPARATE_TEST_SET
public static ClassifierPanel.TestMode[] values()
for (ClassifierPanel.TestMode c : ClassifierPanel.TestMode.values()) System.out.println(c);
public static ClassifierPanel.TestMode 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 namejava.lang.NullPointerException - if the argument is null