UNIT - IV Collection Classes€¦ · UNIT - IV Collection Classes ArrayList Class LinkedList Class...

45
UNIT - IV Collection Classes ArrayList Class LinkedList Class Hashset Class LinkedHashSet Class TreeSet Class PriorityQueue Class EnumSet Class Reference: Herbert Schildt, "Java the complete reference," TMH, Seventh Edition, 2007. 1

Transcript of UNIT - IV Collection Classes€¦ · UNIT - IV Collection Classes ArrayList Class LinkedList Class...

Page 1: UNIT - IV Collection Classes€¦ · UNIT - IV Collection Classes ArrayList Class LinkedList Class Hashset Class LinkedHashSet Class TreeSet Class PriorityQueue Class EnumSet Class

UNIT - IV

Collection Classes

ArrayList Class

LinkedList Class

Hashset Class

LinkedHashSet Class

TreeSet Class

PriorityQueue Class

EnumSet Class

Reference: Herbert Schildt, "Java the complete reference," TMH, Seventh Edition, 2007. 1

Page 2: UNIT - IV Collection Classes€¦ · UNIT - IV Collection Classes ArrayList Class LinkedList Class Hashset Class LinkedHashSet Class TreeSet Class PriorityQueue Class EnumSet Class

2

• Collections in java is a framework that provides an

architecture to store and manipulate the group of objects.

• All the operations that you perform on a data such as

searching, sorting, insertion, manipulation, deletion etc. can

be performed by Java Collections.

• Java Collection simply means a single unit of objects. Java

Collection framework provides many interfaces (Set, List,

Queue, Deque etc.) and classes (ArrayList, Vector, LinkedList,

PriorityQueue, HashSet, LinkedHashSet, TreeSet etc).

Page 3: UNIT - IV Collection Classes€¦ · UNIT - IV Collection Classes ArrayList Class LinkedList Class Hashset Class LinkedHashSet Class TreeSet Class PriorityQueue Class EnumSet Class

3

Cont..

Page 4: UNIT - IV Collection Classes€¦ · UNIT - IV Collection Classes ArrayList Class LinkedList Class Hashset Class LinkedHashSet Class TreeSet Class PriorityQueue Class EnumSet Class

4

java.util package Cont..

Page 5: UNIT - IV Collection Classes€¦ · UNIT - IV Collection Classes ArrayList Class LinkedList Class Hashset Class LinkedHashSet Class TreeSet Class PriorityQueue Class EnumSet Class

5

ArrayList class

Page 6: UNIT - IV Collection Classes€¦ · UNIT - IV Collection Classes ArrayList Class LinkedList Class Hashset Class LinkedHashSet Class TreeSet Class PriorityQueue Class EnumSet Class

6

• The ArrayList class extends AbstractList and

implements the List interface. ArrayList is a generic

class that has this declaration:

class ArrayList<E>

• Here, E specifies the type of objects that the list will

hold.

public class ArrayList<E> extends AbstractList<E> impleme

nts List<E>, RandomAccess, Cloneable, Serializable

Cont..

Page 7: UNIT - IV Collection Classes€¦ · UNIT - IV Collection Classes ArrayList Class LinkedList Class Hashset Class LinkedHashSet Class TreeSet Class PriorityQueue Class EnumSet Class

7

Java ArrayList class are:

• Java ArrayList class can contain duplicate elements.

• Java ArrayList class maintains insertion order.

• Java ArrayList class is non synchronized.

• Java ArrayList allows random access because array

works at the index basis.

• In Java ArrayList class, manipulation is slow because a

lot of shifting needs to be occurred if any element is

removed from the array list.

Cont..

Page 8: UNIT - IV Collection Classes€¦ · UNIT - IV Collection Classes ArrayList Class LinkedList Class Hashset Class LinkedHashSet Class TreeSet Class PriorityQueue Class EnumSet Class

8

Constructor Description

ArrayList() It is used to build an empty array list.

ArrayList(Collection c) It is used to build an array list that is initialized with the elements of the collection c.

ArrayList(int capacity) It is used to build an array list that has the specified initial capacity.

Constructors of Java ArrayList

Cont..

Page 9: UNIT - IV Collection Classes€¦ · UNIT - IV Collection Classes ArrayList Class LinkedList Class Hashset Class LinkedHashSet Class TreeSet Class PriorityQueue Class EnumSet Class

9

Method Description

void add(int index, Object element) It is used to insert the specified element at the specified position index in a list.

boolean addAll(Collection c) It is used to append all of the elements in the specified collection to the end of this list, in the order that they are returned by the specified collection's iterator.

void clear() It is used to remove all of the elements from this list.

int lastIndexOf(Object o) It is used to return the index in this list of the last occurrence of the specified element, or -1 if the list does not contain this element.

Object[] toArray() It is used to return an array containing all of the elements in this list in the correct order.

Methods of Java ArrayList Cont..

Page 10: UNIT - IV Collection Classes€¦ · UNIT - IV Collection Classes ArrayList Class LinkedList Class Hashset Class LinkedHashSet Class TreeSet Class PriorityQueue Class EnumSet Class

10

import java.util.*;

class ArrayListDemo {

public static void main(String args[]) {

// Create an array list.

ArrayList<String> al = new ArrayList<String>();

System.out.println("Initial size of al: " +al.size());

// Add elements to the array list.

al.add("C"); al.add("A"); al.add("E"); al.add("B"); al.add("D");

al.add("F"); al.add(1, "A2");

System.out.println("Size of al after additions: " +al.size());

// Display the array list.

System.out.println("Contents of al: " + al);

// Remove elements from the array list.

al.remove("F"); al.remove(2);

System.out.println("Size of al after deletions: " +al.size());

System.out.println("Contents of al: " + al);}}

Example-1 Cont..

Page 11: UNIT - IV Collection Classes€¦ · UNIT - IV Collection Classes ArrayList Class LinkedList Class Hashset Class LinkedHashSet Class TreeSet Class PriorityQueue Class EnumSet Class

11

Output:

Initial size of al: 0

Size of al after additions: 7

Contents of al: [C, A2, A, E, B, D, F]

Size of al after deletions: 5

Contents of al: [C, A2, E, B, D]

Example-2: See Page number 514 in text book for integer

array

Cont..

Page 12: UNIT - IV Collection Classes€¦ · UNIT - IV Collection Classes ArrayList Class LinkedList Class Hashset Class LinkedHashSet Class TreeSet Class PriorityQueue Class EnumSet Class

UNIT - IV

Collection Classes

ArrayList Class

LinkedList Class

Hashset Class

LinkedHashSet Class

TreeSet Class

PriorityQueue Class

EnumSet Class

Reference: Herbert Schildt, "Java the complete reference," TMH, Seventh Edition, 2007. 12

Page 13: UNIT - IV Collection Classes€¦ · UNIT - IV Collection Classes ArrayList Class LinkedList Class Hashset Class LinkedHashSet Class TreeSet Class PriorityQueue Class EnumSet Class

13

LinkedList class

• Java LinkedList class uses doubly linked list to store the

elements. It provides a linked-list data structure. It inherits the

AbstractList class and implements List and Deque interfaces.

The important points about Java LinkedList are:

• Java LinkedList class can contain duplicate elements.

• Java LinkedList class maintains insertion order.

• Java LinkedList class is non synchronized.

• In Java LinkedList class, manipulation is fast because no

shifting needs to be occurred.

• Java LinkedList class can be used as list, stack or queue.

Page 14: UNIT - IV Collection Classes€¦ · UNIT - IV Collection Classes ArrayList Class LinkedList Class Hashset Class LinkedHashSet Class TreeSet Class PriorityQueue Class EnumSet Class

14

Cont..

Page 15: UNIT - IV Collection Classes€¦ · UNIT - IV Collection Classes ArrayList Class LinkedList Class Hashset Class LinkedHashSet Class TreeSet Class PriorityQueue Class EnumSet Class

15

public class LinkedList<E> extends AbstractSequentialList<E>

implements List<E>, Deque<E>, Cloneable, Serializable

Constructor Description

LinkedList() It is used to construct an empty list.

LinkedList(Collection c) It is used to construct a list containing the elements of the specified collection, in the order they are returned by the collection's iterator.

Constructors of Java LinkedList

Cont..

Page 16: UNIT - IV Collection Classes€¦ · UNIT - IV Collection Classes ArrayList Class LinkedList Class Hashset Class LinkedHashSet Class TreeSet Class PriorityQueue Class EnumSet Class

16

Method Description

void add(int index, Object element)

It is used to insert the specified element at the specified position index in a list.

void addFirst(Object o) It is used to insert the given element at the beginning of a list.

void addLast(Object o) It is used to append the given element to the end of a list.

int size() It is used to return the number of elements in a list

Methods of Java LinkedList Cont..

Page 17: UNIT - IV Collection Classes€¦ · UNIT - IV Collection Classes ArrayList Class LinkedList Class Hashset Class LinkedHashSet Class TreeSet Class PriorityQueue Class EnumSet Class

17

// Demonstrate LinkedList.

import java.util.*;

class LinkedListDemo {

public static void main(String args[]) {

// Create a linked list.

LinkedList<String> l1 = new LinkedList<String>();

// Add elements to the linked list.

l1.add("F"); l1.add("B"); l1.add("D");

l1.add("E"); L1.add("C"); l1.addLast("Z");

l1.addFirst("A"); l1.add(1, "A2");

System.out.println("Original contents of ll: " + l1);

Cont..

Page 18: UNIT - IV Collection Classes€¦ · UNIT - IV Collection Classes ArrayList Class LinkedList Class Hashset Class LinkedHashSet Class TreeSet Class PriorityQueue Class EnumSet Class

18

// Remove elements from the linked list.

l1.remove("F");

l1.remove(2);

Sy1stem.out.println("Contents of l1 after deletion: “+ l1);

// Remove first and last elements.

l1.removeFirst();

l1.removeLast();

System.out.println("l1 after deleting first and last: “+ l1);

// Get and set a value.

String val = 11.get(2);

l1.set(2, val + " Changed");

System.out.println(“l1 after change: " + l1);

}}

Cont..

Page 19: UNIT - IV Collection Classes€¦ · UNIT - IV Collection Classes ArrayList Class LinkedList Class Hashset Class LinkedHashSet Class TreeSet Class PriorityQueue Class EnumSet Class

19

Output :

Original contents of ll: [A, A2, F, B, D, E, C, Z]

Contents of ll after deletion: [A, A2, D, E, C, Z]

ll after deleting first and last: [A2, D, E, C]

ll after change: [A2, D, E Changed, C]

Cont..

Page 20: UNIT - IV Collection Classes€¦ · UNIT - IV Collection Classes ArrayList Class LinkedList Class Hashset Class LinkedHashSet Class TreeSet Class PriorityQueue Class EnumSet Class

UNIT - IV

Collection Classes

ArrayList Class

LinkedList Class

Hashset Class

LinkedHashSet Class

TreeSet Class

PriorityQueue Class

EnumSet Class

Reference: Herbert Schildt, "Java the complete reference," TMH, Seventh Edition, 2007. 20

Page 21: UNIT - IV Collection Classes€¦ · UNIT - IV Collection Classes ArrayList Class LinkedList Class Hashset Class LinkedHashSet Class TreeSet Class PriorityQueue Class EnumSet Class

21

HashSet class

• Java HashSet class is used to create a collection that uses a

hash table for storage. It inherits the AbstractSet class and

implements Set interface.

The important points about Java HashSet class are:

• HashSet stores the elements by using a mechanism

called hashing.

HashSet contains unique elements only.

Difference between List and Set

• List can contain duplicate elements whereas Set contains

unique elements only.

Page 22: UNIT - IV Collection Classes€¦ · UNIT - IV Collection Classes ArrayList Class LinkedList Class Hashset Class LinkedHashSet Class TreeSet Class PriorityQueue Class EnumSet Class

22

Cont..

Page 23: UNIT - IV Collection Classes€¦ · UNIT - IV Collection Classes ArrayList Class LinkedList Class Hashset Class LinkedHashSet Class TreeSet Class PriorityQueue Class EnumSet Class

23

public class HashSet<E> extends AbstractSet<E> implements Set<E>, Cloneable, Serializable

Constructor Description

HashSet() It is used to construct a default HashSet.

HashSet(Collection c) It is used to initialize the hash set by using the elements of the collection c.

HashSet(int capacity) It is used to initialize the capacity of the hash set to the given integer value capacity. The capacity grows automatically as elements are added to the HashSet.

Constructors of Java HashSet class:

Page 24: UNIT - IV Collection Classes€¦ · UNIT - IV Collection Classes ArrayList Class LinkedList Class Hashset Class LinkedHashSet Class TreeSet Class PriorityQueue Class EnumSet Class

24

Method Description

void clear() It is used to remove all of the elements from this set.

boolean contains(Object o) It is used to return true if this set contains the specified element.

boolean add(Object o) It is used to adds the specified element to this set if it is not already present.

boolean isEmpty() It is used to return true if this set contains no elements.

Methods of Java HashSet class:

• It is important to note that HashSet does not guarantee the order of its elements, because the process of hashing doesn’t usually lend itself to the creation of sorted sets.

• If you need sorted storage, then another collection, such as TreeSet, is a better choice.

Page 25: UNIT - IV Collection Classes€¦ · UNIT - IV Collection Classes ArrayList Class LinkedList Class Hashset Class LinkedHashSet Class TreeSet Class PriorityQueue Class EnumSet Class

25

// Demonstrate HashSet.

import java.util.*;

class HashSetDemo {

public static void main(String args[]) {

// Create a hash set.

HashSet<String> hs = new HashSet<String>();

// Add elements to the hash set.

hs.add("Beta"); hs.add("Alpha"); hs.add("Eta");

hs.add("Gamma"); hs.add("Epsilon"); hs.add("Omega");

System.out.println(hs);

}}

The following is the output from this program:

[Gamma, Eta, Alpha, Epsilon, Omega, Beta]

Page 26: UNIT - IV Collection Classes€¦ · UNIT - IV Collection Classes ArrayList Class LinkedList Class Hashset Class LinkedHashSet Class TreeSet Class PriorityQueue Class EnumSet Class

UNIT - IV

Collection Classes

ArrayList Class

LinkedList Class

Hashset Class

LinkedHashSet Class

TreeSet Class

PriorityQueue Class

EnumSet Class

Reference: Herbert Schildt, "Java the complete reference," TMH, Seventh Edition, 2007. 26

Page 27: UNIT - IV Collection Classes€¦ · UNIT - IV Collection Classes ArrayList Class LinkedList Class Hashset Class LinkedHashSet Class TreeSet Class PriorityQueue Class EnumSet Class

27

The LinkedHashSet Class

• Java LinkedHashSet class is a Hash table and Linked list

implementation of the set interface. It inherits HashSet class

and implements Set interface.

The important points about Java LinkedHashSet class are:

• Contains unique elements only like HashSet.

• Provides all optional set operations, and permits null

elements.

• Maintains insertion order.

• LinkedHashSet maintains a linked list of the entries in the set,

in the order in which they were inserted.

Page 28: UNIT - IV Collection Classes€¦ · UNIT - IV Collection Classes ArrayList Class LinkedList Class Hashset Class LinkedHashSet Class TreeSet Class PriorityQueue Class EnumSet Class

28

Page 29: UNIT - IV Collection Classes€¦ · UNIT - IV Collection Classes ArrayList Class LinkedList Class Hashset Class LinkedHashSet Class TreeSet Class PriorityQueue Class EnumSet Class

29

public class LinkedHashSet<E> extends HashSet<E> implements Set<E>, Cloneable, Serializable

Constructor Description

HashSet() It is used to construct a default HashSet.

HashSet(Collection c) It is used to initialize the hash set by using the elements of the collection c.

LinkedHashSet(int capacity) It is used initialize the capacity of the linkedhashset to the given integer value capacity.

LinkedHashSet(int capacity, float fillRatio)

It is used to initialize both the capacity and the fill ratio (also called load capacity) of the hash set from its argument.

Constructors of Java LinkedHashSet class

Page 30: UNIT - IV Collection Classes€¦ · UNIT - IV Collection Classes ArrayList Class LinkedList Class Hashset Class LinkedHashSet Class TreeSet Class PriorityQueue Class EnumSet Class

30

• Try substituting LinkedHashSet for HashSet in the

preceding program.

The output will be:

• [Beta, Alpha, Eta, Gamma, Epsilon, Omega]

• which is the order in which the elements were inserted.

Page 31: UNIT - IV Collection Classes€¦ · UNIT - IV Collection Classes ArrayList Class LinkedList Class Hashset Class LinkedHashSet Class TreeSet Class PriorityQueue Class EnumSet Class

UNIT - IV

Collection Classes

ArrayList Class

LinkedList Class

Hashset Class

LinkedHashSet Class

TreeSet Class

PriorityQueue Class

EnumSet Class

Reference: Herbert Schildt, "Java the complete reference," TMH, Seventh Edition, 2007. 31

Page 32: UNIT - IV Collection Classes€¦ · UNIT - IV Collection Classes ArrayList Class LinkedList Class Hashset Class LinkedHashSet Class TreeSet Class PriorityQueue Class EnumSet Class

32

TreeSet class

• Java TreeSet class implements the Set interface that uses a

tree for storage.

• It inherits AbstractSet class and implements NavigableSet

interface.

• The objects of TreeSet class are stored in ascending order.

The important points about Java TreeSet class are:

• Contains unique elements only like HashSet.

• Access and retrieval times are quiet fast.

• Maintains ascending order.

Page 33: UNIT - IV Collection Classes€¦ · UNIT - IV Collection Classes ArrayList Class LinkedList Class Hashset Class LinkedHashSet Class TreeSet Class PriorityQueue Class EnumSet Class

33

Page 34: UNIT - IV Collection Classes€¦ · UNIT - IV Collection Classes ArrayList Class LinkedList Class Hashset Class LinkedHashSet Class TreeSet Class PriorityQueue Class EnumSet Class

34

public class TreeSet<E> extends AbstractSet<E> implements NavigableSet<E>, Cloneable, Serializable

Constructor Description

TreeSet() It is used to construct an empty tree set that will be sorted in an ascending order according to the natural order of the tree set.

TreeSet(Collection c) It is used to build a new tree set that contains the elements of the collection c.

TreeSet(Comparator comp) It is used to construct an empty tree set that will be sorted according to given comparator.

TreeSet(SortedSet ss) It is used to build a TreeSet that contains the elements of the given SortedSet.

Constructors of Java TreeSet class

Page 35: UNIT - IV Collection Classes€¦ · UNIT - IV Collection Classes ArrayList Class LinkedList Class Hashset Class LinkedHashSet Class TreeSet Class PriorityQueue Class EnumSet Class

35

Method Description

boolean addAll(Collection c) It is used to add all of the elements in the specified collection to this set.

boolean contains(Object o) It is used to return true if this set contains the specified element.

boolean isEmpty() It is used to return true if this set contains no elements.

boolean remove(Object o) It is used to remove the specified element from this set if it is present.

void add(Object o) It is used to add the specified element to this set if it is not already present.

Methods of Java TreeSet class

Page 36: UNIT - IV Collection Classes€¦ · UNIT - IV Collection Classes ArrayList Class LinkedList Class Hashset Class LinkedHashSet Class TreeSet Class PriorityQueue Class EnumSet Class

36

// Demonstrate TreeSet.

import java.util.*;

class TreeSetDemo {

public static void main(String args[]) {

// Create a tree set.

TreeSet<String> ts = new TreeSet<String>();

// Add elements to the tree set.

ts.add("C"); ts.add("A"); ts.add("B");

ts.add("E"); ts.add("F"); ts.add("D");

System.out.println(ts);

}}

The output from this program is shown here:

[A, B, C, D, E, F]

Page 37: UNIT - IV Collection Classes€¦ · UNIT - IV Collection Classes ArrayList Class LinkedList Class Hashset Class LinkedHashSet Class TreeSet Class PriorityQueue Class EnumSet Class

UNIT - IV

Collection Classes

ArrayList Class

LinkedList Class

Hashset Class

LinkedHashSet Class

TreeSet Class

PriorityQueue Class

EnumSet Class

Reference: Herbert Schildt, "Java the complete reference," TMH, Seventh Edition, 2007. 37

Page 38: UNIT - IV Collection Classes€¦ · UNIT - IV Collection Classes ArrayList Class LinkedList Class Hashset Class LinkedHashSet Class TreeSet Class PriorityQueue Class EnumSet Class

38

PriorityQueue Class

• The PriorityQueue class provides the facility of using queue.

But it does not orders the elements in FIFO manner. It inherits

AbstractQueue class.

public class PriorityQueue<E> extends AbstractQueue<E>

implements Serializable

Constructors

• PriorityQueue( )

• PriorityQueue(int capacity)

Page 39: UNIT - IV Collection Classes€¦ · UNIT - IV Collection Classes ArrayList Class LinkedList Class Hashset Class LinkedHashSet Class TreeSet Class PriorityQueue Class EnumSet Class

39

Method Description

boolean add(object) It is used to insert the specified element into this queue and return true upon success.

boolean offer(object) It is used to insert the specified element into this queue.

Object remove() It is used to retrieves and removes the head of this queue.

Object poll() It is used to retrieves and removes the head of this queue, or returns null if this queue is empty.

Object element() It is used to retrieves, but does not remove, the head of this queue.

Object peek() It is used to retrieves, but does not remove, the head of this queue, or returns null if this queue is empty.

Methods of Java Queue Interface

Page 40: UNIT - IV Collection Classes€¦ · UNIT - IV Collection Classes ArrayList Class LinkedList Class Hashset Class LinkedHashSet Class TreeSet Class PriorityQueue Class EnumSet Class

40

import java.util.*; class TestCollection12{ public static void main(String args[]){ PriorityQueue<String> queue=new PriorityQueue<String>(); queue.add("Amit"); queue.add("Vijay"); queue.add("Karan");

queue.add("Jai"); queue.add("Rahul"); System.out.println("head:"+queue.element()); System.out.println("head:"+queue.peek()); System.out.println("iterating the queue elements:");

Iterator itr=queue.iterator(); while(itr.hasNext()){

System.out.println(itr.next()); }

queue.remove(); queue.poll(); System.out.println("after removing two elements:");

Iterator<String> itr2=queue.iterator(); while(itr2.hasNext()){

System.out.println(itr2.next()); } } }

Page 41: UNIT - IV Collection Classes€¦ · UNIT - IV Collection Classes ArrayList Class LinkedList Class Hashset Class LinkedHashSet Class TreeSet Class PriorityQueue Class EnumSet Class

41

Output:

head:Amit

head:Amit

iterating the queue elements:

Amit

Jai

Karan

Vijay

Rahul

after removing two elements:

Karan

Rahul

Vijay

Page 42: UNIT - IV Collection Classes€¦ · UNIT - IV Collection Classes ArrayList Class LinkedList Class Hashset Class LinkedHashSet Class TreeSet Class PriorityQueue Class EnumSet Class

UNIT - IV

Collection Classes

ArrayList Class

LinkedList Class

Hashset Class

LinkedHashSet Class

TreeSet Class

PriorityQueue Class

EnumSet Class

Reference: Herbert Schildt, "Java the complete reference," TMH, Seventh Edition, 2007. 42

Page 43: UNIT - IV Collection Classes€¦ · UNIT - IV Collection Classes ArrayList Class LinkedList Class Hashset Class LinkedHashSet Class TreeSet Class PriorityQueue Class EnumSet Class

43

EnumSet class

• Java EnumSet class is the

specialized Set

implementation for use with

enum types. It inherits

AbstractSet class and

implements the Set interface.

Page 44: UNIT - IV Collection Classes€¦ · UNIT - IV Collection Classes ArrayList Class LinkedList Class Hashset Class LinkedHashSet Class TreeSet Class PriorityQueue Class EnumSet Class

44

public abstract class EnumSet<E extends Enum<E>> extends AbstractSet<E> implements Cloneable, Serializable

Method Description

static <E extends Enum<E>> EnumSet<E> allOf(Class<E> elementType)

It is used to create an enum set containing all of the elements in the specified element type.

static <E extends Enum<E>> EnumSet<E> copyOf(Collection<E> c)

It is used to create an enum set initialized from the specified collection.

static <E extends Enum<E>> EnumSet<E> noneOf(Class<E> elementType)

It is used to create an empty enum set with the specified element type.

Methods of Java EnumSet class

Page 45: UNIT - IV Collection Classes€¦ · UNIT - IV Collection Classes ArrayList Class LinkedList Class Hashset Class LinkedHashSet Class TreeSet Class PriorityQueue Class EnumSet Class

45

import java.util.*;

enum days {

SUNDAY, MONDAY, TUESDAY, WEDNESDAY, THURSDAY, FRIDAY, SATURDAY

}

public class EnumSetExample {

public static void main(String[] args) {

Set<days> set = EnumSet.of(days.TUESDAY, days.WEDNESDAY);

// Traversing elements

Iterator<days> iter = set.iterator();

while (iter.hasNext())

System.out.println(iter.next());

} }

Output:

TUESDAY

WEDNESDAY