Package adams.flow.transformer
Enum WekaInstancesStatisticDataType
- java.lang.Object
-
- java.lang.Enum<WekaInstancesStatisticDataType>
-
- adams.flow.transformer.WekaInstancesStatisticDataType
-
- All Implemented Interfaces:
Serializable
,Comparable<WekaInstancesStatisticDataType>
public enum WekaInstancesStatisticDataType extends Enum<WekaInstancesStatisticDataType>
Defines what data to retrieve from an Instances object.- Version:
- $Revision: 16049 $
- Author:
- fracpete (fracpete at waikato dot ac dot nz)
-
-
Enum Constant Summary
Enum Constants Enum Constant Description COLUMN_BY_INDEX
obtains columns (by index).COLUMN_BY_REGEXP
obtains columns (by reg exp).ROW_BY_INDEX
obtains rows.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static WekaInstancesStatisticDataType
valueOf(String name)
Returns the enum constant of this type with the specified name.static WekaInstancesStatisticDataType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ROW_BY_INDEX
public static final WekaInstancesStatisticDataType ROW_BY_INDEX
obtains rows.
-
COLUMN_BY_INDEX
public static final WekaInstancesStatisticDataType COLUMN_BY_INDEX
obtains columns (by index).
-
COLUMN_BY_REGEXP
public static final WekaInstancesStatisticDataType COLUMN_BY_REGEXP
obtains columns (by reg exp).
-
-
Method Detail
-
values
public static WekaInstancesStatisticDataType[] 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 (WekaInstancesStatisticDataType c : WekaInstancesStatisticDataType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static WekaInstancesStatisticDataType 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
-
-