Can you please write a SINGLY LINKED LIST QUEUE in JAVA per the below info?
Write a queue class, using a singly linked-list, that allows your queue to store type int. Your class should have the following methods:
Method Name Return Type Description
enqueue none inserts an element at the rear of the queue
dequeue int removes the element at the front of the queue and returns it
isEmpty boolean returns true if the queue is empty, false otherwise
isFull boolean returns true if the queue is full, false otherwise
size int returns the number of elements in a queue
In your test class, create a queue and exercise all the methods.