Package org.kie.internal.conf
Class ConstraintJittingThresholdOption
- java.lang.Object
-
- org.kie.internal.conf.ConstraintJittingThresholdOption
-
- All Implemented Interfaces:
java.io.Serializable,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 class ConstraintJittingThresholdOption extends java.lang.Object implements org.kie.api.conf.SingleValueRuleBaseOptionAn option to define after how many evaluations in interpreted mode (with mvel) a constraint should be jitted (translated in bytecode)- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description static intDEFAULT_VALUEThe defualt value for this optionstatic org.kie.api.conf.OptionKey<ConstraintJittingThresholdOption>KEYstatic java.lang.StringPROPERTY_NAMEThe property name for the constraint jitting option
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(java.lang.Object obj)static ConstraintJittingThresholdOptionget(int threshold)This is a factory method for this Constraint Jitting Threshold configuration.java.lang.StringgetPropertyName()intgetThreshold()Returns the threshold value for PermGeninthashCode()
-
-
-
Field Detail
-
PROPERTY_NAME
public static final java.lang.String PROPERTY_NAME
The property name for the constraint jitting option- See Also:
- Constant Field Values
-
KEY
public static org.kie.api.conf.OptionKey<ConstraintJittingThresholdOption> KEY
-
DEFAULT_VALUE
public static final int DEFAULT_VALUE
The defualt value for this option- See Also:
- Constant Field Values
-
-
Method Detail
-
get
public static ConstraintJittingThresholdOption get(int threshold)
This is a factory method for this Constraint Jitting Threshold configuration. The factory method is a best practice for the case where the actual object construction is changed in the future.- Parameters:
threshold- the threshold value for the Constraint Jitting option- Returns:
- the actual type safe Constraint Jitting threshold configuration.
-
getPropertyName
public java.lang.String getPropertyName()
- Specified by:
getPropertyNamein interfaceorg.kie.api.conf.Option
-
getThreshold
public int getThreshold()
Returns the threshold value for PermGen- Returns:
-
hashCode
public int hashCode()
- Overrides:
hashCodein classjava.lang.Object
-
equals
public boolean equals(java.lang.Object obj)
- Overrides:
equalsin classjava.lang.Object
-
-