|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<PMMLModelType>
org.knime.core.node.port.pmml.PMMLModelType
public enum PMMLModelType
Enum to describe valid PMML models (and extensions) as of version 2.1.
Enum Constant Summary | |
---|---|
AssociationModel
PMML AssociationModel. |
|
ClusteringModel
PMML ClusteringModel. |
|
Extension
PMML Extension fur own model implementation if PMML standard models don't fit. |
|
GeneralRegressionModel
PMML GeneralRegressionModel. |
|
NaiveBayesModel
PMML NaiveBayes. |
|
NeuralNetwork
PMML NeuralNetwork. |
|
None
Neither a valid PMML model nor an extension was found. |
|
RegressionModel
PMML RegressionModel. |
|
SequenceModel
PMML SequenceModel. |
|
SupportVectorMachineModel
PMML Support Vector Machine Model. |
|
TreeModel
PMML TreeModel. |
Method Summary | |
---|---|
static PMMLModelType |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static PMMLModelType[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final PMMLModelType TreeModel
public static final PMMLModelType NeuralNetwork
public static final PMMLModelType ClusteringModel
public static final PMMLModelType RegressionModel
public static final PMMLModelType GeneralRegressionModel
public static final PMMLModelType NaiveBayesModel
public static final PMMLModelType AssociationModel
public static final PMMLModelType SequenceModel
public static final PMMLModelType SupportVectorMachineModel
public static final PMMLModelType Extension
public static final PMMLModelType None
Method Detail |
---|
public static PMMLModelType[] values()
for (PMMLModelType c : PMMLModelType.values()) System.out.println(c);
public static PMMLModelType valueOf(String name)
name
- the name of the enum constant to be returned.
IllegalArgumentException
- if this enum type has no constant
with the specified name
NullPointerException
- if the argument is null
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |