Java Collections

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