Consider example:
case when type = 'myValue' then 'default' else type end
how to listed several values here type = 'myValue'? Instead of duplicating:
case
     when type = 'myValue' then 'default'
     when type = 'other' then 'default'
     else type
end
 
    