Hamcrest Collections Cookbook

2021 VietMX 0

1. Introduction This cookbook illustrates how to make use of Hamcrest matchers to work with and test collections. The format of the cookbook is example focused and practical […]

Guava Collections Cookbook

2021 VietMX 0

1. Introduction This cookbook article is organized into small and focused recipes and code snippets for using Guava style collections. The format is that of a growing list […]

Apache Commons Collections MapUtils

2021 VietMX 0

1. Introduction MapUtils is one of the tools available in the Apache Commons Collections project. Simply put, it provides utility methods and decorators to work with java.util.Map and java.util.SortedMap instances. […]

Apache Commons Collections OrderedMap

2021 VietMX 0

1. Overview The Apache Commons Collections library provides useful classes that complement the Java Collections Framework. In this article, we will review the interface OrderedMap, which extends java.util.Map. 2. […]

Zipping Collections in Java

2021 VietMX 0

1. Introduction In this tutorial, we’ll illustrate how to zip two collections into one logical collection. The “zip” operation is slightly different from the standard “concat” […]

Spring – Injecting Collections

2021 VietMX 0

1. Introduction In this tutorial, we’re going to show how to inject Java collections using the Spring framework. Simply put, we’ll demonstrate examples with the List, Map, Set collection interfaces. 2. List With @Autowired […]