protected static enum ModelingStep.SeedPolicy extends java.lang.Enum<ModelingStep.SeedPolicy>
| Enum Constant and Description |
|---|
Global
The global AutoML seed will be used.
|
Incremental
The seed is incremented for each model, starting from the global seed if there is one.
|
None
No seed will be used (= random).
|
| Modifier and Type | Method and Description |
|---|---|
static ModelingStep.SeedPolicy |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ModelingStep.SeedPolicy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ModelingStep.SeedPolicy None
public static final ModelingStep.SeedPolicy Global
public static final ModelingStep.SeedPolicy Incremental
public static ModelingStep.SeedPolicy[] values()
for (ModelingStep.SeedPolicy c : ModelingStep.SeedPolicy.values()) System.out.println(c);
public static ModelingStep.SeedPolicy 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