Package org.kie.pmml.api.enums
Enum PMML_MODEL
- java.lang.Object
-
- java.lang.Enum<PMML_MODEL>
-
- org.kie.pmml.api.enums.PMML_MODEL
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<PMML_MODEL>,Named
public enum PMML_MODEL extends java.lang.Enum<PMML_MODEL> implements Named
PMML models- See Also:
- MODEL-ELEMENT
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static PMML_MODELbyName(java.lang.String name)java.lang.StringgetName()static PMML_MODELvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static PMML_MODEL[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ANOMALY_DETECTION_MODEL
public static final PMML_MODEL ANOMALY_DETECTION_MODEL
-
ASSOCIATION_MODEL
public static final PMML_MODEL ASSOCIATION_MODEL
-
BASELINE_MODEL
public static final PMML_MODEL BASELINE_MODEL
-
BAYESIAN_NETWORK_MODEL
public static final PMML_MODEL BAYESIAN_NETWORK_MODEL
-
CLUSTERING_MODEL
public static final PMML_MODEL CLUSTERING_MODEL
-
GAUSSIAN_PROCESS_MODEL
public static final PMML_MODEL GAUSSIAN_PROCESS_MODEL
-
GENERAL_REGRESSION_MODEL
public static final PMML_MODEL GENERAL_REGRESSION_MODEL
-
MINING_MODEL
public static final PMML_MODEL MINING_MODEL
-
NAIVEBAYES_MODEL
public static final PMML_MODEL NAIVEBAYES_MODEL
-
NEARESTNEIGHBOR_MODEL
public static final PMML_MODEL NEARESTNEIGHBOR_MODEL
-
NEURALNETWORK_MODEL
public static final PMML_MODEL NEURALNETWORK_MODEL
-
REGRESSION_MODEL
public static final PMML_MODEL REGRESSION_MODEL
-
RULESET_MODEL
public static final PMML_MODEL RULESET_MODEL
-
SCORECARD_MODEL
public static final PMML_MODEL SCORECARD_MODEL
-
SEQUENCE_MODEL
public static final PMML_MODEL SEQUENCE_MODEL
-
SUPPORT_VECTOR_MACHINE_MODEL
public static final PMML_MODEL SUPPORT_VECTOR_MACHINE_MODEL
-
TEXT_MODEL
public static final PMML_MODEL TEXT_MODEL
-
TIME_SERIES_MODEL
public static final PMML_MODEL TIME_SERIES_MODEL
-
TREE_MODEL
public static final PMML_MODEL TREE_MODEL
-
TEST_MODEL
public static final PMML_MODEL TEST_MODEL
-
-
Method Detail
-
values
public static PMML_MODEL[] 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 (PMML_MODEL c : PMML_MODEL.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static PMML_MODEL 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 PMML_MODEL byName(java.lang.String name)
-
-