Package adams.flow.transformer
Enum WekaClustererInfo.InfoType
- java.lang.Object
-
- java.lang.Enum<WekaClustererInfo.InfoType>
-
- adams.flow.transformer.WekaClustererInfo.InfoType
-
- All Implemented Interfaces:
Serializable
,Comparable<WekaClustererInfo.InfoType>
- Enclosing class:
- WekaClustererInfo
public static enum WekaClustererInfo.InfoType extends Enum<WekaClustererInfo.InfoType>
The type of information to generate.- Version:
- $Revision: 9523 $
- Author:
- fracpete (fracpete at waikato dot ac dot nz)
-
-
Enum Constant Summary
Enum Constants Enum Constant Description GRAPH
graph (if available).MODEL
model.NUM_CLUSTERS
number of clusters.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static WekaClustererInfo.InfoType
valueOf(String name)
Returns the enum constant of this type with the specified name.static WekaClustererInfo.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 WekaClustererInfo.InfoType MODEL
model.
-
NUM_CLUSTERS
public static final WekaClustererInfo.InfoType NUM_CLUSTERS
number of clusters.
-
GRAPH
public static final WekaClustererInfo.InfoType GRAPH
graph (if available).
-
-
Method Detail
-
values
public static WekaClustererInfo.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 (WekaClustererInfo.InfoType c : WekaClustererInfo.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 WekaClustererInfo.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
-
-