Package adams.flow.transformer
Enum WekaClassifierInfo.InfoType
- java.lang.Object
-
- java.lang.Enum<WekaClassifierInfo.InfoType>
-
- adams.flow.transformer.WekaClassifierInfo.InfoType
-
- All Implemented Interfaces:
Serializable
,Comparable<WekaClassifierInfo.InfoType>
- Enclosing class:
- WekaClassifierInfo
public static enum WekaClassifierInfo.InfoType extends Enum<WekaClassifierInfo.InfoType>
The type of information to generate.- Version:
- $Revision$
- Author:
- fracpete (fracpete at waikato dot ac dot nz)
-
-
Enum Constant Summary
Enum Constants Enum Constant Description GRAPH
graph (if available).MODEL
model.SOURCE_CODE
source code (if available).
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static WekaClassifierInfo.InfoType
valueOf(String name)
Returns the enum constant of this type with the specified name.static WekaClassifierInfo.InfoType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
MODEL
public static final WekaClassifierInfo.InfoType MODEL
model.
-
GRAPH
public static final WekaClassifierInfo.InfoType GRAPH
graph (if available).
-
SOURCE_CODE
public static final WekaClassifierInfo.InfoType SOURCE_CODE
source code (if available).
-
-
Method Detail
-
values
public static WekaClassifierInfo.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 (WekaClassifierInfo.InfoType c : WekaClassifierInfo.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 WekaClassifierInfo.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
-
-