=========
Core Java Collections List Cookbooks and Examples
Relevant Articles:
- Immutable ArrayList in Java
 - Guide to the Java ArrayList
 - Random List Element
 - Removing all nulls from a List in Java
 - Removing all duplicates from a List in Java
 - How to TDD a List Implementation in Java
 - Iterating Backward Through a List
 - Add Multiple Items to an Java ArrayList
 - Remove the First Element from a List
 - How to Find an Element in a List with Java
 - Copy a List to Another List in Java
 - Finding Max/Min of a List or Collection
 - Collections.emptyList() vs. New List Instance
 - Remove All Occurrences of a Specific Value from a List
 - Converting a Collection to ArrayList in Java
 - Check If Two Lists are Equal in Java
 - Java 8 Streams: Find Items From One List Based On Values From Another List
 - A Guide to the Java LinkedList
 - Java List UnsupportedOperationException
 - Java List Initialization in One Line
 - Ways to Iterate Over a List in Java
 - ClassCastException: Arrays$ArrayList cannot be cast to ArrayList
 - Flattening Nested Collections in Java