- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
The isEmpty() method of AbstractSequentialList in Java
The isEmpty() method of the AbstractSequentialList class is used to check whether the list is empty or not. If it is empty, then TRUE is returned, else FALSE.
The syntax is as follows.
public boolean isEmpty()
To work with the AbstractSequentialList class in Java, you need to import the following package.
import java.util.AbstractSequentialList;
The following is an example to implement AbstractSequentialList isEmpty() method in Java.
Example
import java.util.LinkedList; import java.util.AbstractSequentialList; public class Demo { public static void main(String[] args) { AbstractSequentialList<Integer> absSequential = new LinkedList<>(); absSequential.add(110); absSequential.add(320); absSequential.add(400); absSequential.add(550); absSequential.add(600); absSequential.add(700); absSequential.add(900); System.out.println("Elements in the AbstractSequentialList = "+absSequential); System.out.println("Is the AbstractSequentialList empty? "+ absSequential.isEmpty()); } }
Output
Elements in the AbstractSequentialList = [110, 320, 400, 550, 600, 700, 900] Is the AbstractSequentialList empty? False
Example
import java.util.LinkedList; import java.util.AbstractSequentialList; public class Demo { public static void main(String[] args) { AbstractSequentialList<Integer> absSequential = new LinkedList<>(); System.out.println("Elements in the AbstractSequentialList = "+absSequential); System.out.println("Is the AbstractSequentialList empty? "+ absSequential.isEmpty()); } }
Output
Elements in the AbstractSequentialList = [] Is the AbstractSequentialList empty? True
- Related Articles
- The isEmpty() method of CopyOnWriteArrayList method in Java
- NavigableMap isEmpty() Method in Java
- The contains() method of AbstractSequentialList in Java
- The clear() method of AbstractSequentialList in Java
- The toArray() method of AbstractSequentialList in Java
- The subList() method of AbstractSequentialList in Java
- The equals() method of AbstractSequentialList in Java
- The indexOf() method of AbstractSequentialList in Java
- The containsAll() method of AbstractSequentialList in Java
- The removeAll() method of AbstractSequentialList in Java
- The isEmpty() method of Java AbstractCollection class
- The toArray(T[]) method of AbstractSequentialList in Java
- Java String isEmpty() method example.
- The listIterator() method of Java AbstractSequentialList class
- The remove() method of Java AbstractSequentialList class

Advertisements