Question: Step 1. Using Java, create an enumeration, called Packet, consisting of SOURCE_IP, DESTINATION_IP, PROTOCOL, and INFO. Use the values() method to loop through the enumeration.

Step 1. Using Java, create an enumeration, called Packet, consisting of SOURCE_IP, DESTINATION_IP, PROTOCOL, and INFO. Use the values() method to loop through the enumeration. In that loop print each value and index using the ordinal () method. (a) Using the requirements for Step 1 above, write code in Java, that adds another value to the enumeration. The value and index are printed using ordinal (). The output is meaningful to the data. | Step 2. Using Java and the same enumeration specifics that was created in step 1 above, create a program that compares the ordinal place for five values. Use the following: p1 = Packet.INFO: p2 = Packet. DESTINATION.DE N.JP p3 = Packet.PROTOCOL: p4 = Packet SOURCE.DE p5 = Packet.INFO Using the compare tol) method, check if p1 comes before or after p3. Then compare p1 to p5 to see if they are equal
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
