public static enum AbstractPMMLRegressionModel.ModelType extends Enum<AbstractPMMLRegressionModel.ModelType>
Enum Constant and Description |
---|
linearRegression
Linear Regression
|
logisticRegression
Logistic Regression
|
stepwisePolynomialRegression
Polynomial Regression
|
Modifier and Type | Method and Description |
---|---|
static AbstractPMMLRegressionModel.ModelType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AbstractPMMLRegressionModel.ModelType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AbstractPMMLRegressionModel.ModelType linearRegression
public static final AbstractPMMLRegressionModel.ModelType stepwisePolynomialRegression
public static final AbstractPMMLRegressionModel.ModelType logisticRegression
public static AbstractPMMLRegressionModel.ModelType[] values()
for (AbstractPMMLRegressionModel.ModelType c : AbstractPMMLRegressionModel.ModelType.values()) System.out.println(c);
public static AbstractPMMLRegressionModel.ModelType valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2020 Actian Corporation. All rights reserved.