Category Archives: java

Java Collections

Sets, Lists, HashMaps Sets Set set = new HashSet(Arrays.asList(elements));   public TreeSet(Comparator comp)   headSet(Object to)   tailSet(Object from)   subSet(Object from, Object to) ArrayList,LinkedList * can ONLY find index from either beginning and end * ListIterator HashMap Map.Entry Properties … Continue reading

Posted in java | Leave a comment