Write a Java program that simulates a basic library delivery system. The user of the program will be able to add different types of items to library collection. In your program, as the main data...


Write a Java program that simulates a basic library delivery system. The user of the program will be
able to add different types of items to library collection. In your program, as the main data structure,
use the generic collection class ArrayList to store String references.
Create three instances from ArrayList of String references. The first one will store the types, the
second one will store the items, and the third one will store the owners of the items. The types are
exactly the following: "Book", "DVD", "Magazine". The items and their owners will be read from
the keyboard.
Regarding the matching between an item and its owner, the location (index value) of an item in the
list of items will be the same with the location of its corresponding owner in the list of owners.
As the next step, create the fourth instance from ArrayList of String references and call this list as
itemsDeliveredByOwners. This last list will store String references to indicate the owners of
the items (such as the following: "ownerX has delivered the itemNameY from
typeZ collection").
After reading any number of items and their owners, the program will finally print the contents of
itemsDeliveredByOwners list. Please, consider the sample output shown below


please help me to solve this


Write a Java program that simulates a basic library delivery system. The user of the program will be<br>able to add different types of items to library collection. In your program, as the main data structure,<br>use the generic collection class ArrayList to store String references.<br>Create three instances from ArrayList of String references. The first one will store the types, the<br>second one will store the items, and the third one will store the owners of the items. The types are<br>exactly the following:

Extracted text: Write a Java program that simulates a basic library delivery system. The user of the program will be able to add different types of items to library collection. In your program, as the main data structure, use the generic collection class ArrayList to store String references. Create three instances from ArrayList of String references. The first one will store the types, the second one will store the items, and the third one will store the owners of the items. The types are exactly the following: "Book", "DVD", "Magazine". The items and their owners will be read from the keyboard. Regarding the matching between an item and its owner, the location (index value) of an item in the list of items will be the same with the location of its corresponding owner in the list of owners. As the next step, create the fourth instance from ArrayList of String references and call this list as itemsDeliveredByOwners. This last list will store String references to indicate the owners of the items (such as the following: "ownerX has delivered the itemNameY from typeZ collection"). After reading any number of items and their owners, the program will finally print the contents of itemsDeliveredByOwners list. Please, consider the sample output shown below: Please choose the type of the item from below list: Press 1 for Book Press 2 for DVD Press 3 for Magazine 1 Please enter the item: The Lord of the Rings: The Fellowship of the Ring Please enter the owner of the item: Çağkan Uludağlı Press 1 to continue adding item, 0 to exit 1 Please choose the type of the item from below list: Press 1 for Book Press 2 for DVD Press 3 for Magazine 2 Please enter the item: Harry Potter and the Philosopher's Stone Please enter the owner of theitem:
Please choose the type of the item from below list:<br>Press 1 for Book<br>Press 2 for DVD<br>Press 3 for Magazine<br>1<br>Please enter the item:<br>The Lord of the Rings: The Fellowship of the Ring<br>Please enter the owner of the item:<br>Çağkan Uludağlı<br>Press 1 to continue adding item, 0 to exit<br>1<br>Please choose the type of the item from below list:<br>Press 1 for Book<br>Press 2 for DVD<br>Press 3 for Magazine<br>2<br>Please enter the item:<br>Harry Potter and the Philosopher's Stone<br>Please enter the owner of the item:<br>Tugay Direk<br>Press 1 to continue adding item, 0 to exit<br>Library information listed below:<br>Çağkan Uludağlı has delivered The Lord of the Rings: The Fellowship of the Ring<br>from Book collection.<br>Tugay Direk has delivered Harry Potter and the Philosopher's Stone from DVD<br>collection.<br>

Extracted text: Please choose the type of the item from below list: Press 1 for Book Press 2 for DVD Press 3 for Magazine 1 Please enter the item: The Lord of the Rings: The Fellowship of the Ring Please enter the owner of the item: Çağkan Uludağlı Press 1 to continue adding item, 0 to exit 1 Please choose the type of the item from below list: Press 1 for Book Press 2 for DVD Press 3 for Magazine 2 Please enter the item: Harry Potter and the Philosopher's Stone Please enter the owner of the item: Tugay Direk Press 1 to continue adding item, 0 to exit Library information listed below: Çağkan Uludağlı has delivered The Lord of the Rings: The Fellowship of the Ring from Book collection. Tugay Direk has delivered Harry Potter and the Philosopher's Stone from DVD collection.
Jun 11, 2022
SOLUTION.PDF

Get Answer To This Question

Related Questions & Answers

More Questions »

Submit New Assignment

Copy and Paste Your Assignment Here