2018-12-22 14:45:24 -05:00
|
|
|
|
=========
|
|
|
|
|
|
|
|
|
|
## Core Java Collections List Cookbooks and Examples
|
|
|
|
|
|
|
|
|
|
### Relevant Articles:
|
|
|
|
|
- [Immutable ArrayList in Java](http://www.baeldung.com/java-immutable-list)
|
|
|
|
|
- [Guide to the Java ArrayList](http://www.baeldung.com/java-arraylist)
|
2019-02-28 07:09:34 -05:00
|
|
|
|
- [Java – Get Random Item/Element From a List](http://www.baeldung.com/java-random-list-element)
|
2018-12-22 14:45:24 -05:00
|
|
|
|
- [Removing all nulls from a List in Java](http://www.baeldung.com/java-remove-nulls-from-list)
|
|
|
|
|
- [Removing all duplicates from a List in Java](http://www.baeldung.com/java-remove-duplicates-from-list)
|
|
|
|
|
- [How to TDD a List Implementation in Java](http://www.baeldung.com/java-test-driven-list)
|
|
|
|
|
- [Iterating Backward Through a List](http://www.baeldung.com/java-list-iterate-backwards)
|
|
|
|
|
- [Add Multiple Items to an Java ArrayList](http://www.baeldung.com/java-add-items-array-list)
|
|
|
|
|
- [Remove the First Element from a List](http://www.baeldung.com/java-remove-first-element-from-list)
|
|
|
|
|
- [How to Find an Element in a List with Java](http://www.baeldung.com/find-list-element-java)
|
|
|
|
|
- [Copy a List to Another List in Java](http://www.baeldung.com/java-copy-list-to-another)
|
|
|
|
|
- [Finding Max/Min of a List or Collection](http://www.baeldung.com/java-collection-min-max)
|
|
|
|
|
- [Collections.emptyList() vs. New List Instance](https://www.baeldung.com/java-collections-emptylist-new-list)
|
|
|
|
|
- [Remove All Occurrences of a Specific Value from a List](https://www.baeldung.com/java-remove-value-from-list)
|
|
|
|
|
- [Check If Two Lists are Equal in Java](http://www.baeldung.com/java-test-a-list-for-ordinality-and-equality)
|
|
|
|
|
- [Java 8 Streams: Find Items From One List Based On Values From Another List](https://www.baeldung.com/java-streams-find-list-items)
|
|
|
|
|
- [A Guide to the Java LinkedList](http://www.baeldung.com/java-linkedlist)
|
|
|
|
|
- [Java List UnsupportedOperationException](http://www.baeldung.com/java-list-unsupported-operation-exception)
|
|
|
|
|
- [Java List Initialization in One Line](https://www.baeldung.com/java-init-list-one-line)
|
|
|
|
|
- [Ways to Iterate Over a List in Java](https://www.baeldung.com/java-iterate-list)
|
|
|
|
|
- [ClassCastException: Arrays$ArrayList cannot be cast to ArrayList](https://www.baeldung.com/java-classcastexception-arrays-arraylist)
|
2019-01-05 04:12:31 -05:00
|
|
|
|
- [Flattening Nested Collections in Java](http://www.baeldung.com/java-flatten-nested-collections)
|
|
|
|
|
- [Intersection of Two Lists in Java](https://www.baeldung.com/java-lists-intersection)
|
2019-01-17 21:06:22 -05:00
|
|
|
|
- [Multi Dimensional ArrayList in Java](https://www.baeldung.com/java-multi-dimensional-arraylist)
|
2019-02-17 14:59:36 -05:00
|
|
|
|
- [Determine If All Elements Are the Same in a Java List](https://www.baeldung.com/java-list-all-equal)
|
2019-03-04 05:58:17 -05:00
|
|
|
|
- [List of Primitive Integer Values in Java](https://www.baeldung.com/java-list-primitive-int)
|
2019-03-04 06:51:01 -05:00
|
|
|
|
- [Performance Comparison of Primitive Lists in Java](https://www.baeldung.com/java-list-primitive-performance)
|
2019-03-09 16:57:33 -05:00
|
|
|
|
- [Filtering a Java Collection by a List](https://www.baeldung.com/java-filter-collection-by-list)
|