Using enum to choose emitter

I have a large list of emitters to choose from, and the choice is based on what the enum outputs, so like if the enum says “fire” let’s attach an emitter with particle “fire” to somewhere. Because the list is too large to be written manually I’d have to use a variable. How do I define that variable so that it represents a particle system with name/ID indicated by the enum?

Thanks!