Module datarush.analytics
Enum PMMLModel.MiningFunction
- java.lang.Object
-
- java.lang.Enum<PMMLModel.MiningFunction>
-
- com.pervasive.datarush.analytics.pmml.PMMLModel.MiningFunction
-
- All Implemented Interfaces:
Serializable
,Comparable<PMMLModel.MiningFunction>
- Enclosing class:
- PMMLModel
public static enum PMMLModel.MiningFunction extends Enum<PMMLModel.MiningFunction>
Enumeration of values for the "functionName" attribute
-
-
Enum Constant Summary
Enum Constants Enum Constant Description associationRules
Used byPMMLAssociationModel
classification
Used by various classifersclustering
Used by various cluster algorithmsprincipalComponents
Used by PCAregression
Used by various regression algorithmssequences
Used by sequencestimeSeries
Used by timeseries
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static PMMLModel.MiningFunction
valueOf(String name)
Returns the enum constant of this type with the specified name.static PMMLModel.MiningFunction[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
associationRules
public static final PMMLModel.MiningFunction associationRules
Used byPMMLAssociationModel
-
sequences
public static final PMMLModel.MiningFunction sequences
Used by sequences
-
classification
public static final PMMLModel.MiningFunction classification
Used by various classifers
-
regression
public static final PMMLModel.MiningFunction regression
Used by various regression algorithms
-
clustering
public static final PMMLModel.MiningFunction clustering
Used by various cluster algorithms
-
timeSeries
public static final PMMLModel.MiningFunction timeSeries
Used by timeseries
-
principalComponents
public static final PMMLModel.MiningFunction principalComponents
Used by PCA
-
-
Method Detail
-
values
public static PMMLModel.MiningFunction[] 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 (PMMLModel.MiningFunction c : PMMLModel.MiningFunction.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static PMMLModel.MiningFunction 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
-
-