protected static enum PMMLFactory.ModelType extends java.lang.Enum<PMMLFactory.ModelType>
| Enum Constant and Description |
|---|
GENERAL_REGRESSION_MODEL |
NEURAL_NETWORK_MODEL |
REGRESSION_MODEL |
RULESET_MODEL |
SVM_MODEL |
TREE_MODEL |
UNKNOWN_MODEL |
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
toString() |
static PMMLFactory.ModelType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PMMLFactory.ModelType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PMMLFactory.ModelType UNKNOWN_MODEL
public static final PMMLFactory.ModelType REGRESSION_MODEL
public static final PMMLFactory.ModelType GENERAL_REGRESSION_MODEL
public static final PMMLFactory.ModelType NEURAL_NETWORK_MODEL
public static final PMMLFactory.ModelType TREE_MODEL
public static final PMMLFactory.ModelType RULESET_MODEL
public static final PMMLFactory.ModelType SVM_MODEL
public static PMMLFactory.ModelType[] values()
for (PMMLFactory.ModelType c : PMMLFactory.ModelType.values()) System.out.println(c);
public static PMMLFactory.ModelType valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic java.lang.String toString()
toString in class java.lang.Enum<PMMLFactory.ModelType>