Package moa.gui.experimentertab
Enum ExpPreviewPanel.TypePanel
- java.lang.Object
-
- java.lang.Enum<ExpPreviewPanel.TypePanel>
-
- moa.gui.experimentertab.ExpPreviewPanel.TypePanel
-
- All Implemented Interfaces:
Serializable
,Comparable<ExpPreviewPanel.TypePanel>
- Enclosing class:
- ExpPreviewPanel
public static enum ExpPreviewPanel.TypePanel extends Enum<ExpPreviewPanel.TypePanel>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CLASSIFICATION
CONCEPT_DRIFT
REGRESSION
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description MeasureCollection
getMeasureCollection()
static ExpPreviewPanel.TypePanel
valueOf(String name)
Returns the enum constant of this type with the specified name.static ExpPreviewPanel.TypePanel[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CLASSIFICATION
public static final ExpPreviewPanel.TypePanel CLASSIFICATION
-
REGRESSION
public static final ExpPreviewPanel.TypePanel REGRESSION
-
CONCEPT_DRIFT
public static final ExpPreviewPanel.TypePanel CONCEPT_DRIFT
-
-
Method Detail
-
values
public static ExpPreviewPanel.TypePanel[] 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 (ExpPreviewPanel.TypePanel c : ExpPreviewPanel.TypePanel.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ExpPreviewPanel.TypePanel valueOf(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:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
getMeasureCollection
public MeasureCollection getMeasureCollection()
-
-