This is a Java console-based project that manages a collection of shirts using Collections Framework.
Each shirt contains: brand, color, price, and size.
The project supports adding shirts, displaying them, filtering, sorting, and counting based on different criteria.
- Add shirts to the list
- Display all shirts
- Get shirts by brand
- Get shirts by brand + size
- Sort shirts by price (Low → High)
- Get all available brands
- Count shirts of a particular brand
- Count shirts of all brands
- Java
- Collections Framework (List, Set, Map)
- Comparator & Sorting
- Open the project in Eclipse / IntelliJ / VS Code
- Run the
User.javaclass - Follow the menu instructions in the console
⭐ Built as a learning project to practice Java Collections and problem-solving.