]
Jozef Marko closed DROOLS-1718.
-------------------------------
Resolution: Won't Do
Won't be done due to changed team focus on DMN and ScenarioSimulation assets.
Accept hexadecimal values in rule LHS
-------------------------------------
Key: DROOLS-1718
URL:
https://issues.jboss.org/browse/DROOLS-1718
Project: Drools
Issue Type: Bug
Components: Guided Rule Editor
Reporter: Uli Bubenheimer
Priority: Minor
Labels: drools-tools
It is not possible to use a hexadecimal value in the LHS of a rule.
The manual says: "All standard Java numeric primitives are supported." As
hexadecimal values are standard Java numeric primitives, this could be considered not just
a new feature, but a bug (documentation bug at least).
I found this issue first mentioned in the referenced user forum post from 2006; sadly,
the poster did not create a JIRA issue as suggested, or at least I could not find one.
Example:
rule "bla"
when
Value( tag == 0x00080060 ) // ERROR!
then
//something
end