Is there a way to iterate through all the elements of an enum to add them into a LinkedList?
The example that I'm trying to do: I'm making a deck of cards. I have 2 enums: rank and value. Using a nested for loop, I want to have every card of the deck added into the ArrayList, using the 2 enums.
Thanks!