Comment raccourcir si et sinon en java

return a == b? "b"
     : a == c? "c"
     : a == d? "d"
     : "x";
Joyous Jackal