vote up 2 vote down star

Just wonder groovy way to do value matching with default like this?

if(params.max != 10 && params.max != 20 && params.max != 30){
    params.max = 10
}
flag

50% accept rate

2 Answers

vote up 4 vote down check

params.max = [10, 20, 30].contains(params.max)) ? params.max : 10;

link|flag
vote up 0 vote down

You can also use the Elvis operator (?:) which is useful in this kind of situation. It returns the 2nd value if the first value is null:

params.max = [10, 20, 30].find{ it == params.max } ?: 10
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.