Package org.kie.pmml.api.enums
Enum MINING_FUNCTION
- java.lang.Object
-
- java.lang.Enum<MINING_FUNCTION>
-
- org.kie.pmml.api.enums.MINING_FUNCTION
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<MINING_FUNCTION>,Named
public enum MINING_FUNCTION extends java.lang.Enum<MINING_FUNCTION> implements Named
- See Also:
- MINING-FUNCTION
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ASSOCIATION_RULESCLASSIFICATIONCLUSTERINGMIXEDREGRESSIONSEQUENCESTIME_SERIES
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static MINING_FUNCTIONbyName(java.lang.String name)java.lang.StringgetName()static MINING_FUNCTIONvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static MINING_FUNCTION[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ASSOCIATION_RULES
public static final MINING_FUNCTION ASSOCIATION_RULES
-
SEQUENCES
public static final MINING_FUNCTION SEQUENCES
-
CLASSIFICATION
public static final MINING_FUNCTION CLASSIFICATION
-
REGRESSION
public static final MINING_FUNCTION REGRESSION
-
CLUSTERING
public static final MINING_FUNCTION CLUSTERING
-
TIME_SERIES
public static final MINING_FUNCTION TIME_SERIES
-
MIXED
public static final MINING_FUNCTION MIXED
-
-
Method Detail
-
values
public static MINING_FUNCTION[] 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 (MINING_FUNCTION c : MINING_FUNCTION.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static MINING_FUNCTION valueOf(java.lang.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:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
byName
public static MINING_FUNCTION byName(java.lang.String name)
-
-