What is the difference between Collections and “Stored Collections” in Java? and why they are called “Stored”?
What is the difference between Collections and Stored Collections in Java? and why they
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Stored Collections are not a standard java concept. I assume you are referring to the Oracle concept. That link describes some of the differences, but the upshot is that the database is using (abusing – because it violates the contract) the
Collectioninterface in order to provide storage in a database. Standard java Collections are in-memory only objects, and storage and retrieval are done with separate APIs.