public enum MODEL_TYPE extends Enum<MODEL_TYPE>
| Enum Constant and Description |
|---|
LINEAR_REGRESSION |
LOGISTIC_REGRESSION |
STEPWISE_POLYNOMIAL_REGRESSION |
| Modifier and Type | Method and Description |
|---|---|
static MODEL_TYPE |
byName(String name) |
String |
getName() |
static MODEL_TYPE |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MODEL_TYPE[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MODEL_TYPE LINEAR_REGRESSION
public static final MODEL_TYPE STEPWISE_POLYNOMIAL_REGRESSION
public static final MODEL_TYPE LOGISTIC_REGRESSION
public static MODEL_TYPE[] values()
for (MODEL_TYPE c : MODEL_TYPE.values()) System.out.println(c);
public static MODEL_TYPE 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 nullpublic static MODEL_TYPE byName(String name)
public String getName()
Copyright © 2001–2021 JBoss by Red Hat. All rights reserved.