Introduction to PCollections

2021 VietMX 0

1. Overview In this article, we will be looking at PCollections, a Java library providing persistent, immutable collections. Persistent data structures (collections) can’t be modified directly during the […]

Guide to Guava Table

2021 VietMX 0

1. Overview In this tutorial, we’ll show how to use the Google Guava’s Table interface and its multiple implementations. Guava’s Table is a collection that represents a table like […]

Guide to Guava Multimap

2021 VietMX 0

1. Overview In this article, we will look at one of Map implementations from Google Guava library – Multimap. It is a collection that maps keys to values, […]

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 […]

Guide to Apache Commons CircularFifoQueue

2021 VietMX 0

1. Overview In this quick tutorial, we’ll have a look at the CircularFifoQueue data structure provided in the collections4.queue package of the Apache Commons Collections library. CircularFifoQueue<E> implements the Queue<E> interface and […]

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. […]