I saw some when searching as i can see it is like Linux Directory List. Like Home->usr and so on.
To start with, I don't see any relationship with this other than the use of LIST data structure which is available in Java collection Framework. It seems you didn't read the article completely. Just referred an example somewhere may be
Okay. to start with, Java collections framework (JCF) is a set of classes and interfaces that implement commonly reusable collection data structures. People who are in to computing know very well about data structures. Stack, Queues, Lists, Trees (Many types), Graph, Hash, etc...
In good old days, we had to implement those ourselves. But now in Java, you have them already implemented. For example, if you need a queue (Last In First Out (LIFO) structure) for your application, then you can simply use java.util.Queue. If you have learned Data Structures & Algorithms already, you know what are these.
See the Oracle article
Introduction to the Collections Framework.
Note that you need to carefully read from top to bottom. Don't try to read something from the middle and try to understand it.