public enum EngineValidationMode extends Enum<EngineValidationMode>
Control when a recommender engine is validated. Validation makes sure that all placeholders have been resolved.
Enum Constant and Description |
---|
DEFERRED
Defer validation until a recommender is created.
|
IMMEDIATE
Validate the recommender engine when it is loaded.
|
NONE
Do not validate the recommender engine.
|
Modifier and Type | Method and Description |
---|---|
static EngineValidationMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EngineValidationMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EngineValidationMode IMMEDIATE
public static final EngineValidationMode DEFERRED
public static final EngineValidationMode NONE
public static EngineValidationMode[] values()
for (EngineValidationMode c : EngineValidationMode.values()) System.out.println(c);
public static EngineValidationMode 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 null