Hi,
I am using jdev 11.1.2.4
how can i use groovy's IN operator in the following code to make it shorter?
#{bindings.PaymentModeCode.inputValue=='Cash'||bindings.PaymentModeCode.inputValue=='Cheque'||bindings.PaymentModeCode.inputValue=='Online'}
I want to make it like
#{bindings.PaymentModeCode.inputValue IN ['Cash','Cheque','Online']}
thanks