The following article provides an outline for Java Collection Methods. The Java Collections Framework has a member called collections class. The collection class is contained in a package called java.util package. Mainly, the collection class is used along with the static methods which operate on return the collections or on the collections. Each and every method of this class throws the null pointer exception whenever the object or collection passed to any of the methods is null. There are three fields in the collection class, which are Empty_Map, EMPTY_LIST, EMPTY_SET, which can be used to get an immutable set, list, and map.
ADVERTISEMENT Popular Course in this category JAVA MASTERY - Specialization | 78 Course Series | 15 Mock TestsStart Your Free Software Development Course
Web development, programming languages, Software testing & others
List of Java Collection Methods
Given below is the list of Java Collection Methods:
1. addAll() Method
Java.util.Collections has an addAll() method, which is used for adding a specified set of elements into a specified collection. Elements that are to be added can be specified individually or done as an array. This convenience method is same as the c.addAll(Arrays.asList(elements)), however the addAll() method is faster while doing most of the implementations.
Code:
import java.util.*; public class EDUCBA { public static void main(String[] course) throws Exception { try { List<string> courselist = new ArrayList<string>(); courselist.add("Data Science"); courselist.add("Data Engineering"); courselist.add("Data Analyst"); courselist.add("Data Mining"); System.out.println("\n New Course List with course name : \n" + courselist); boolean price = Collections.addAll(courselist, "22590", "23490", "34590", "54590"); System.out.println("\n Status of the courses on Website : \n" + price); System.out.println("\n New Courses with their respective prices : \n" + courselist); } catch (NullPointerException upcomingcourse) { System.out.println("Upcoming Courses are : " + upcomingcourse); } catch (IllegalArgumentException upcomingcourse) { System.out.println("Upcoming Courses are : " + upcomingcourse); } } }</string></string>
Output:
2. asLifoQueue() Method
The java.util.Collections class has asLifoQueue() method, which is used for returning a view of Deque as Last in first out Queue. For pushing, the method add is mapped and remove is used for pop. This method is majorly important when we require a queue in a Lifo ordering.
Code:
import java.util.*; public class EDUCBA { public static void main(String[] course) throws Exception { try { Deque<string> courselist = new ArrayDeque<string>(10); courselist.add("Data Science"); courselist.add("Data Analysis"); courselist.add("Data Engineering"); courselist.add("Data Mining"); Queue<string> newcourses = Collections.asLifoQueue(courselist); System.out.println("\n New courses added to website are : \n" + newcourses); } catch (IllegalArgumentException upcomingcourses) { System.out.println("\n Upcoming courses are : \n" + upcomingcourses); } } }</string></string></string>
Output:
3. Collections.binarySearch() Method
The java.util.Collections have a method java.util.Collections.binarySearch(), which is used to return a specific object’s position in a sorted list. A ClassCastException is thrown by the method when the elements of the list are incomparable by using the specified comparator or when the search key is incomparable to the elements.
Code:
import java.util.ArrayList; import java.util.Collections; import java.util.List; public class EDUCBA { public static void main(String[] course) { List<integer> newcourseID = new ArrayList<integer>(); newcourseID.add(112202); newcourseID.add(230042); newcourseID.add(340713); newcourseID.add(104219); newcourseID.add(628973); int IDofCourse = Collections.binarySearch(newcourseID, 340713); System.out.println(IDofCourse); IDofCourse = Collections.binarySearch(newcourseID, 628974); System.out.println(IDofCourse); } }</integer></integer>
Output:
4. checkedCollection() Method
The java.util.Collections class has a checkedCollection() method, which is used for returning a dynamic typesafe view of a particular collection. hashCodes are not passed by the returned collection and equate the operations to the backing collection. However, it generally rely on hashCode methods and Object’s equals.
Code:
import java.util.*; public class EDUCBA { public static void main(String[] course) throws Exception { try { List<string> courselist = new ArrayList<string>(); courselist.add("Data Science"); courselist.add("Data Analysis"); courselist.add("Data Engineering"); courselist.add("Data Mining"); System.out.println("\n Best seller courses: \n" + courselist); Collection<string> bestseller = Collections .checkedCollection(courselist, String.class); System.out.println("\n List constitues of bestseller courses, as: \n" + bestseller); } catch (IllegalArgumentException upcomingcourses) { System.out.println("\n Upcoming courses are : \n" + upcomingcourses); } } }</string></string></string>
Output:
5. copy() Method
The java.util.Collections class has a copy() method used to copy the elements of a list to another list.
Code:
import java.util.*; public class EDUCBA { public static void main(String[] course) throws Exception { try { List<string> courselist = new ArrayList<string>(10); List<string> pricelist = new ArrayList<string>(10); courselist.add("Data Science"); courselist.add("Data Analysis"); courselist.add("Data Engineering"); courselist.add("Data Mining"); pricelist.add("11900"); pricelist.add("23450"); pricelist.add("36340"); pricelist.add("44740"); System.out.println("\n Recently added courses: \n" + courselist); System.out.println("\n Price of respective courses: \n" + pricelist); System.out.println("\n Merging these above lists: \n"); Collections.copy(pricelist, courselist); System.out.println(" Recently added courses: " + courselist); System.out.println("\n Price of respective courses, will be displayed shortly: " + pricelist); } catch (IllegalArgumentException upcomingcourse) { System.out.println("\n Upcoming courses are : \n" + upcomingcourse); } catch (IndexOutOfBoundsException upcomingcourse) { System.out.println("\n Upcoming courses are : \n" + upcomingcourse); } } }</string></string></string></string>
Output:
6. Java.util.Collections.disjoint() Method
The java.util.Collections class has java.util.Collections.disjoint() method used to check if two specified collections are a disjoint or if they are not. Disjoint is a condition when two collections don’t have any elements in common.
Code:
import java.util.*; public class EDUCBA { public static void main(String[] course) { List<string> DataCourse = new ArrayList<string>(); DataCourse.add("Data Science"); DataCourse.add("Data Analysis"); DataCourse.add("Data Engineering"); DataCourse.add("Data Mining"); List<string> ColudCourse = new Vector<string>(); ColudCourse.add("AWS"); ColudCourse.add("Google Cloud"); ColudCourse.add("Azure"); ColudCourse.add("IBM Cloud"); List UpcomingCourses = new Vector(); UpcomingCourses.add(2); UpcomingCourses.add("Waiting List"); System.out.println("\n You can buy bundle of DataCouse and CloudCourse : \n " + Collections.disjoint(DataCourse, ColudCourse)); System.out.println("You can get deals on bundle of DataCouse and UpcomingCourses : \n " + Collections.disjoint(DataCourse, UpcomingCourses)); } }</string></string></string></string>
Output:
Conclusion
On the basis of this article, we understood the concepts of Java collection methods. This article explains various collection methods with examples. All of the methods mentioned in the article are thoroughly explained with their definitions and usage.
The above is the detailed content of Java Collection Methods. For more information, please follow other related articles on the PHP Chinese website!

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于结构化数据处理开源库SPL的相关问题,下面就一起来看一下java下理想的结构化数据处理类库,希望对大家有帮助。

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于PriorityQueue优先级队列的相关知识,Java集合框架中提供了PriorityQueue和PriorityBlockingQueue两种类型的优先级队列,PriorityQueue是线程不安全的,PriorityBlockingQueue是线程安全的,下面一起来看一下,希望对大家有帮助。

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于java锁的相关问题,包括了独占锁、悲观锁、乐观锁、共享锁等等内容,下面一起来看一下,希望对大家有帮助。

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于多线程的相关问题,包括了线程安装、线程加锁与线程不安全的原因、线程安全的标准类等等内容,希望对大家有帮助。

本篇文章给大家带来了关于Java的相关知识,其中主要介绍了关于关键字中this和super的相关问题,以及他们的一些区别,下面一起来看一下,希望对大家有帮助。

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于枚举的相关问题,包括了枚举的基本操作、集合类对枚举的支持等等内容,下面一起来看一下,希望对大家有帮助。

封装是一种信息隐藏技术,是指一种将抽象性函式接口的实现细节部分包装、隐藏起来的方法;封装可以被认为是一个保护屏障,防止指定类的代码和数据被外部类定义的代码随机访问。封装可以通过关键字private,protected和public实现。

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于设计模式的相关问题,主要将装饰器模式的相关内容,指在不改变现有对象结构的情况下,动态地给该对象增加一些职责的模式,希望对大家有帮助。


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Dreamweaver Mac version
Visual web development tools

VSCode Windows 64-bit Download
A free and powerful IDE editor launched by Microsoft

MinGW - Minimalist GNU for Windows
This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

PhpStorm Mac version
The latest (2018.2.1) professional PHP integrated development tool

SAP NetWeaver Server Adapter for Eclipse
Integrate Eclipse with SAP NetWeaver application server.
