How to define and implement a fixed size “List” in Java?
I want to create an fixed size list in java, according to my searchings & readings from the internet i couldn’t find that feature in java, However i want to create a fixed size list with 100 elements, when i want to add a new item it should remove 100th element, then adjust the index like this (99th element becomes the 100th element now(Indexes only)) and then my new element should add to the first index.