public enum InfogramAlgorithm extends java.lang.Enum<InfogramAlgorithm>
| Enum Constant and Description |
|---|
AUTO |
deeplearning |
drf |
gbm |
glm |
xgboost |
| Modifier and Type | Method and Description |
|---|---|
static InfogramAlgorithm |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static InfogramAlgorithm[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final InfogramAlgorithm AUTO
public static final InfogramAlgorithm deeplearning
public static final InfogramAlgorithm drf
public static final InfogramAlgorithm gbm
public static final InfogramAlgorithm glm
public static final InfogramAlgorithm xgboost
public static InfogramAlgorithm[] values()
for (InfogramAlgorithm c : InfogramAlgorithm.values()) System.out.println(c);
public static InfogramAlgorithm 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 null