How can I detect if a duplicate is added to a Set?
Created May 8, 2012
John Zukowski The add() method returns a boolean. If the set did not previously contain the element, true is returned. If the set previoulsy did contain the element, false is returned. Of course, you can also check with the contains() method to see if the element is contained in the Set first.