When I use drodownMenu-- filter_by_value function,I need to transform conditionStack to JAVA server-side.
But the Json of conditionStack make me confused.
when condition name is ‘eq’ or ‘begin with’,etc… ,args is an array of string.
when condition name is ‘by_value’,args’, args is an array of array of string.
example Json:
[{“column”:8,“operation”:“conjunction”,“conditions”:[{“name”:“eq”,“args”:[“354”]},{“name”:“by_value”,“args”:[[“356”]]}],“fieldName”:“CellId”},{“column”:7,“operation”:“conjunction”,“conditions”:[{“name”:“by_value”,“args”:[[“21598”]]}],“fieldName”:“FreqInfo”}]
It can be uneasy to transform to a common object in Java.
Please help!