wie man wenn sonst wenn und sonst in Java verkürzt

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