Package adams.flow.transformer
Enum WekaEvaluationInfo.InfoType
- java.lang.Object
-
- java.lang.Enum<WekaEvaluationInfo.InfoType>
-
- adams.flow.transformer.WekaEvaluationInfo.InfoType
-
- All Implemented Interfaces:
Serializable
,Comparable<WekaEvaluationInfo.InfoType>
- Enclosing class:
- WekaEvaluationInfo
public static enum WekaEvaluationInfo.InfoType extends Enum<WekaEvaluationInfo.InfoType>
The type of information to output.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CLASS_ATTRIBUTE_NAME
HEADER
NUM_PREDICTIONS
PREDICTIONS_RECORDED
RELATION_NAME
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static WekaEvaluationInfo.InfoType
valueOf(String name)
Returns the enum constant of this type with the specified name.static WekaEvaluationInfo.InfoType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
RELATION_NAME
public static final WekaEvaluationInfo.InfoType RELATION_NAME
-
HEADER
public static final WekaEvaluationInfo.InfoType HEADER
-
CLASS_ATTRIBUTE_NAME
public static final WekaEvaluationInfo.InfoType CLASS_ATTRIBUTE_NAME
-
PREDICTIONS_RECORDED
public static final WekaEvaluationInfo.InfoType PREDICTIONS_RECORDED
-
NUM_PREDICTIONS
public static final WekaEvaluationInfo.InfoType NUM_PREDICTIONS
-
-
Method Detail
-
values
public static WekaEvaluationInfo.InfoType[] 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 (WekaEvaluationInfo.InfoType c : WekaEvaluationInfo.InfoType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static WekaEvaluationInfo.InfoType 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
-
-