'How do I add items to a class<? extends Application>

Hey how do I add multiple items to a this:

public static final Class<? extends Application> APP_CLASS;

I can add one class to it by :

public static final Class<? extends Application> APPLICATION_CLASS = TestResource.class;

But what if I want to add multiple classes, I've tried to convert it to hashset didn't seem to work.



Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source