Saturday, June 6, 2020

Java Collection Interface

Java Collection Interface :  The root interface in the collection hierarchy. Java collection represents a group of objects, known as its elements. Some collections allow duplicate elements and others do not. Some are ordered and others unordered. The JDK does not provide any direct implementations of this interface: it provides implementations of more specific sub-interfaces like Set and List. This interface is typically used to pass collections around and manipulate them where maximum generality is desired.Several of these methods can throw an UnsupportedOperationException.
It has very useful methods like as tabled below :

Method NameDescription
boolean add(Object obj)Adds obj to the invoking collection. Returns true if obj was added to the collection. Returns false if obj is already a member of the collection, or if the collection does not allow duplicates.
boolean addAll(Collection c)Adds all the elements of c to the invoking collection. Returns true if the operation succeeds (i.e., the elements were added). Otherwise, returns false.
void clear( )Removes all elements from the invoking collection.
boolean contains(Object obj)Returns true if obj is an element of the invoking collection. Otherwise, returns false.
boolean containsAll(Collection c)Returns true if the invoking collection contains all elements of c. Otherwise, returns false.
boolean equals(Object obj)Returns true if the invoking collection and obj are equal. Otherwise, returns false.
int hashCode( )Returns the hash code for the invoking collection.
boolean isEmpty( )Returns true if the invoking collection is empty. Otherwise, returns false.
Iterator iterator( )Returns an iterator for the invoking collection.
boolean remove(Object obj)Removes one instance of obj from the invoking collection. Returns true if the element was removed. Otherwise, returns false.
boolean removeAll(Collection c)Removes all elements of c from the invoking collection. Returns true if the collection changed (i.e., elements were removed). Otherwise, returns false.
boolean retainAll(Collection c)Removes all elements from the invoking collection except those in c. Returns true if the collection changed (i.e., elements were removed). Otherwise, returns false.
int size( )Returns the number of elements held in the invoking collection.
Object[ ] toArray( )Returns an array that contains all the elements stored in the invoking collection. The array elements are copies of the collection elements.
Object[ ] toArray(Object array[ ])Returns an array containing only those collection elements whose type matches that of array.



No comments:

Post a Comment

Hello Buddy, if you have any doubts or need any clarification , feel free to comment. Thanks.