Generify iterator based on ItemType

This commit is contained in:
Santiago Lo Coco 2024-02-27 11:35:48 +01:00
parent 6cf9f8fe7b
commit c1d759b710
6 changed files with 24 additions and 9 deletions

View File

@ -34,11 +34,12 @@ public class App {
library.iterator().forEachRemaining(x -> System.out.println(x.getTitle() + " by " + x.getOwner())); library.iterator().forEachRemaining(x -> System.out.println(x.getTitle() + " by " + x.getOwner()));
printSeparator(); printSeparator();
Iterator<LibraryItem> bookIterator = library.customTypeIterator(Library.ItemType.BOOK); Iterator<LibraryItem> bookIterator = library.customTypeIterator(ItemType.BOOK);
System.out.println("Books available in the library:"); System.out.println("Books available in the library:");
bookIterator.forEachRemaining(x -> System.out.println(x.getTitle() + " by " + x.getOwner())); bookIterator.forEachRemaining(x -> System.out.println(x.getTitle() + " by " + x.getOwner()));
printSeparator();
Iterator<LibraryItem> magazineIterator = library.customTypeIterator(Library.ItemType.MAGAZINE); Iterator<LibraryItem> magazineIterator = library.customTypeIterator(ItemType.MAGAZINE);
System.out.println("Magazines available in the library:"); System.out.println("Magazines available in the library:");
magazineIterator.forEachRemaining(x -> System.out.println(x.getTitle() + " by " + x.getOwner())); magazineIterator.forEachRemaining(x -> System.out.println(x.getTitle() + " by " + x.getOwner()));
} }

View File

@ -9,6 +9,7 @@ public class Book implements LibraryItem {
this.author = author; this.author = author;
} }
@Override
public String getTitle() { public String getTitle() {
return title; return title;
} }
@ -17,4 +18,9 @@ public class Book implements LibraryItem {
public String getOwner() { public String getOwner() {
return author; return author;
} }
@Override
public ItemType getType() {
return ItemType.BOOK;
}
} }

View File

@ -0,0 +1,6 @@
package edu.uastw;
public enum ItemType {
BOOK,
MAGAZINE
}

View File

@ -19,6 +19,7 @@ public class Library implements Iterable<LibraryItem> {
} }
return instance; return instance;
} }
public void setBooksCapacity(int capacity) { public void setBooksCapacity(int capacity) {
this.booksCapacity = capacity; this.booksCapacity = capacity;
} }
@ -62,16 +63,10 @@ public class Library implements Iterable<LibraryItem> {
} }
} }
public enum ItemType {
BOOK,
MAGAZINE
}
public Iterator<LibraryItem> customTypeIterator(ItemType type) { public Iterator<LibraryItem> customTypeIterator(ItemType type) {
List<LibraryItem> itemsOfType = new ArrayList<>(); List<LibraryItem> itemsOfType = new ArrayList<>();
for (LibraryItem item : libraryItems) { for (LibraryItem item : libraryItems) {
if ((type == ItemType.BOOK && item instanceof Book) || if (item.getType() == type) {
(type == ItemType.MAGAZINE && item instanceof Magazine)) {
itemsOfType.add(item); itemsOfType.add(item);
} }
} }

View File

@ -3,4 +3,5 @@ package edu.uastw;
public interface LibraryItem { public interface LibraryItem {
String getTitle(); String getTitle();
String getOwner(); String getOwner();
ItemType getType();
} }

View File

@ -9,6 +9,7 @@ public class Magazine implements LibraryItem {
this.publisher = publisher; this.publisher = publisher;
} }
@Override
public String getTitle() { public String getTitle() {
return title; return title;
} }
@ -17,4 +18,9 @@ public class Magazine implements LibraryItem {
public String getOwner() { public String getOwner() {
return publisher; return publisher;
} }
@Override
public ItemType getType() {
return ItemType.MAGAZINE;
}
} }