public enum RuleAnalysisComputationMode extends Enum<RuleAnalysisComputationMode>
RuleAnalysisGraph
should be ran.Enum Constant and Description |
---|
COMPATIBLE
run in combination with existing
ActionGraphBuilder for
compatibility |
DISABLED
don't run
RuleAnalysisGraph |
PROVIDER_COMPATIBLE
same as
COMPATIBLE , but also with the ability for rule analysis to depend on providers
from action graph |
Modifier and Type | Field and Description |
---|---|
static RuleAnalysisComputationMode |
DEFAULT |
Modifier and Type | Method and Description |
---|---|
static RuleAnalysisComputationMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RuleAnalysisComputationMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RuleAnalysisComputationMode DISABLED
RuleAnalysisGraph
public static final RuleAnalysisComputationMode COMPATIBLE
ActionGraphBuilder
for
compatibilitypublic static final RuleAnalysisComputationMode PROVIDER_COMPATIBLE
COMPATIBLE
, but also with the ability for rule analysis to depend on providers
from action graphpublic static final RuleAnalysisComputationMode DEFAULT
public static RuleAnalysisComputationMode[] values()
for (RuleAnalysisComputationMode c : RuleAnalysisComputationMode.values()) System.out.println(c);
public static RuleAnalysisComputationMode 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