java construct hashset from array code example
Example 1: how to initialize a set in java
Set<E> h = new HashSet<E>();
Example 2: HashSet h = new HashSet();
HashSet<String> h = new HashSet<String>();
Set<E> h = new HashSet<E>();
HashSet<String> h = new HashSet<String>();