Question: 1. Create an advanced enumeration to represent the months. Each enum should come with a friendlyName, shortName, daysInMonth, isLeapYearMonth, the zodiacSign, the zodiacStartDay and zodiacNextMonthEndDay

1. Create an advanced enumeration to represent the months. Each enum should come with a friendlyName,

shortName, daysInMonth, isLeapYearMonth, the zodiacSign, the zodiacStartDay and zodiacNextMonthEndDay

Aquarlus,pisces,Aries,Taurus, Gemini, Cancer, Leo, Virgo,Libra,Scorpio, Sagittarius, Capricom

a. Tester

i. Properties

1. (ConcurrentHashMap())

rentals (Key is the apartments apartmentId)

b. Apartment

i. Properties

1. (string)

apartmentId, address

2. (ConcurrentHashMap())

renters (Key is the renters renterId)

ii. 2 Constructors:

Accepts: apartmentId, and address

Accepts: RandomAccessFile

iii. Methods:

1. addRenter(Renter r)

2. save(RandomAccessFile raf), load(RandomAccessFile raf)

c.

Renter

i. Properties

1. (string)

renterId, name

2. (ConcurrentHashMap())

items (Key is the items itemId)

ii. 2 Constructors:

Accepts: renterId, and name

Accepts: RandomAccessFile

iii. Methods

1. addItem(Item i)

2. save(RandomAccessFile raf), load(RandomAccessFile raf)

d. Item

i. Properties

1. (string)

itemId, name

ii. 2 Constructors:

Accepts: itemId, and name

Accepts: RandomAccessFile

iii. Methods

1. save(RandomAccessFile raf), load(RandomAccessFile raf)

3. In the App class you should populate your tree of data starting with 3 Apartments, each rental has 4 renters, and each

renter has 3 items. Save the data by calling the save for each apartment. This should cascade down the tree. Clear

the rentals ConcurrentHashMap and then reload the entire structure (code below) and print the list

while(raf.getFilePointer() < raf.length())

Apartment a = new Apartment(raf);

rentals.put(a.apartmentId, a);

}

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!