My requirement is to match tags. In the example, this particular HourConstraint
checks the TeacherHour
assigned to Hour(23)
.
Specifically, it checks TeacherHour.attributes["tags"]
for the values ["asst_ct","teacher_john_smith"]
and detects atleast one match, two in this case (both "asst_ct"
and "teacher_john_smith"
) .
TeacherHour:
id: 47
assigned_hour: Null
attributes:Map<List<String>>
"tags":["asst_ct","no_strenuous_duties","kinda_boring","teacher_john_smith"]
"another_attribute":[...]
HourConstraint:
hour: Hour(23)
attribute: "tags"
values_list: ["asst_ct","teacher_john_smith"]
Question: How do I detect the presence (true or false) of common elements between two lists?
Drools Expert has memberOf
and contains
, but they check a scalar vs a collection, never a collection vs a collection.
I see two potential ways:
- introduce a function
boolean isIntersecting(list,list)
and tell Drools to use that for truth checking
- Implement
TeacherHour.attributes[]
as a string instead of a list and HourConstraint.valueslist
as a regular expression that can match that list
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…