public enum MLImplementationType extends Enum<MLImplementationType>
| Enum Constant and Description |
|---|
SUPERVISED_ACTIVE |
SUPERVISED_BATCH |
UNSUPERVISED |
| Modifier and Type | Method and Description |
|---|---|
static MLImplementationType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MLImplementationType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MLImplementationType SUPERVISED_ACTIVE
public static final MLImplementationType SUPERVISED_BATCH
public static final MLImplementationType UNSUPERVISED
public static MLImplementationType[] values()
for (MLImplementationType c : MLImplementationType.values()) System.out.println(c);
public static MLImplementationType 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. All rights reserved.