Java Collections

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