I want to retrive object in reverse insertion order.
For example i have collection object where i have inserted following object
mango apple orange
while retriving it should come in reverse insert order i.e orange,apple,mango and this collection class should now allow duplicate object also. Is there any inbuilt API is there in JDK 1.6 to do this?otherwise please tell me the logic to implement to do this.
Here is a example for you. I hope this will help you.
here I have used a inbuilt method of collectionc that is reverse Note that this method will change in original variable value.