Package org.kie.internal.conf
Enum MultithreadEvaluationOption
- java.lang.Object
-
- java.lang.Enum<MultithreadEvaluationOption>
-
- org.kie.internal.conf.MultithreadEvaluationOption
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<MultithreadEvaluationOption>
,org.kie.api.conf.KieBaseOption
,org.kie.api.conf.Option
,org.kie.api.conf.SingleValueKieBaseOption
,org.kie.api.conf.SingleValueOption
,org.kie.api.conf.SingleValueRuleBaseOption
public enum MultithreadEvaluationOption extends java.lang.Enum<MultithreadEvaluationOption> implements org.kie.api.conf.SingleValueRuleBaseOption
An Enum for multithread evaluation option. drools.multithreadEvaluation = <true|false> DEFAULT = false
-
-
Field Summary
Fields Modifier and Type Field Description static org.kie.api.conf.OptionKey<MultithreadEvaluationOption>
KEY
static java.lang.String
PROPERTY_NAME
The property name for the multithread evaluation option
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getPropertyName()
boolean
isMultithreadEvaluation()
static MultithreadEvaluationOption
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static MultithreadEvaluationOption[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
YES
public static final MultithreadEvaluationOption YES
-
NO
public static final MultithreadEvaluationOption NO
-
-
Field Detail
-
PROPERTY_NAME
public static final java.lang.String PROPERTY_NAME
The property name for the multithread evaluation option- See Also:
- Constant Field Values
-
KEY
public static org.kie.api.conf.OptionKey<MultithreadEvaluationOption> KEY
-
-
Method Detail
-
values
public static MultithreadEvaluationOption[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (MultithreadEvaluationOption c : MultithreadEvaluationOption.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static MultithreadEvaluationOption valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
getPropertyName
public java.lang.String getPropertyName()
- Specified by:
getPropertyName
in interfaceorg.kie.api.conf.Option
-
isMultithreadEvaluation
public boolean isMultithreadEvaluation()
-
-