Reputation: 1
What is difference between collection and collections ?
Could any one answer me .
Upvotes: 0
Views: 46
Reputation: 27336
The documentation is clear on this one.
Collections is a collection of static methods, that operate or return an object of type Collection
.
Collection represents a group of objects, known as its elements. It is an interface type that is implemented by anything that contains multiple objects.
Upvotes: 2