I have a program that I have to use a HashSet for. My question arises from the fact that HashSets mainly contain one object, but if I wish to send information to the other class, it takes three objects: one string, one int, and one boolean. The assignment says that I must use a HashSet
Constructor I am trying to send information to:
public Magic (String name, int size, boolean isVisible)
I have a class that is supposed to be sending sets of spells containing name, size, and isVisible.
Magic.go() class:
public void go()
{
    int i = 0;
    while (i < size) {
        if (isVisible == true) {
            System.out.println(name + "!");
        }
        i++;
    }
} 
				
                        
Just create an object which contains all the three fields like this: