Quick Java Question (Shorthand if statements)

I’m pretty sure that in PHP you could do if(x == a, b, c) which would be the equivalent of if(x == a || x == b || x == c)

Is there a similar shorthand in Java?