Java Collections

1234567891011121314151617181920212223242526272829
Across
  1. 4. - Implements List as well as Queue
  2. 6. - Method works faster in Set than List
  3. 7. - Misfeature in Arrays, Rectified in Parameterized Types
  4. 8. - All rounder List that maintains insertion order.
  5. 11. - Insertion order and no duplicates
  6. 12. - Implement this interface to get iterated by forEach loop
  7. 13. - Used to iterate a collection by hiding iterator and loop counter
  8. 16. - Class is a Set in some way, but not a Collection
  9. 18. - Data structure behind every no duplicate, natural order collection
  10. 20. - Principle behind bounded wild cards
  11. 21. - Those who implemented this finds elements faster
  12. 22. - Get a range of elements from a List
  13. 23. - Growable Array but get cloned on every update
  14. 24. - Internally this is Bit Fields
  15. 25. - Map used in multithreading environment
  16. 27. - Method gives an Immutable with a single key-value pair
  17. 29. - Queue method that behave like add but doesn't throw exception if full
Down
  1. 1. - Home for static utilities for collection
  2. 2. - Legacy class having same name as underlying data structure
  3. 3. - Method removes all elements from queue and put in a collection
  4. 5. - Map method that solve varags issue of of
  5. 8. - ArrayList and LinkedList use 'containsAll' of this class
  6. 9. - Use this collection interface to implement Stack
  7. 10. - Make collections homogeneous
  8. 14. - Ensure backward compatibility with Generics
  9. 15. - Container types have inverse relation to each other as the payload types
  10. 17. - Garbage collection friendly HashMa
  11. 19. - Arrays method to get an Immutable List from an array
  12. 26. - Little-c collection
  13. 28. - Utility method to get an Immutable List of repeated elements