1. Overview
In this tutorial β we will illustrate the most common and useful ways to work with Lists using the Guava library.
Letβs start simple β and take a look at just creating a new ArrayList using Guava syntax β without new:
List<String> names = Lists.newArrayList("John", "Adam", "Jane");
2. Reverse a List
First, letβs reverse a List using Lists.reverse() as in the following example:
@Test
public void whenReverseList_thenReversed() {
List<String> names = Lists.newArrayList("John", "Adam", "Jane");
List<String> reversed = Lists.reverse(names);
assertThat(reversed, contains("Jane", "Adam", "John"));
}
3. Generate Character List from a String
Now β letβs see how to break a String apart into a list of Characters.
In the following example β we use the Lists.CharactersOf() API to create a Character List from a String βJohnβ:
@Test
public void whenCreateCharacterListFromString_thenCreated() {
List<Character> chars = Lists.charactersOf("John");
assertEquals(4, chars.size());
assertThat(chars, contains('J', 'o', 'h', 'n'));
}
4. Partition a List
Next β Letβs see how to partition a List.
In the following example β we use Lists.partition() to get consecutive sublists each of size two:
@Test
public void whenPartitionList_thenPartitioned(){
List<String> names = Lists.newArrayList("John","Jane","Adam","Tom","Viki","Tyler");
List<List<String>> result = Lists.partition(names, 2);
assertEquals(3, result.size());
assertThat(result.get(0), contains("John", "Jane"));
assertThat(result.get(1), contains("Adam", "Tom"));
assertThat(result.get(2), contains("Viki", "Tyler"));
}
5. Remove Duplicates From List
Now β letβs use a simple trick to remove duplicates from a List.
In the following example β we copy the elements into a Set and then we create a List back out of the remaining elements:
@Test
public void whenRemoveDuplicatesFromList_thenRemoved() {
List<Character> chars = Lists.newArrayList('h','e','l','l','o');
assertEquals(5, chars.size());
List<Character> result = ImmutableSet.copyOf(chars).asList();
assertThat(result, contains('h', 'e', 'l', 'o'));
}
6. Remove Null Values from List
Next β letβs see how to remove null values from a List.
In the following example β we remove all null values using the highly useful Iterables.removeIf() API and a predicate provided by the library itself:
@Test
public void whenRemoveNullFromList_thenRemoved() {
List<String> names = Lists.newArrayList("John", null, "Adam", null, "Jane");
Iterables.removeIf(names, Predicates.isNull());
assertEquals(3, names.size());
assertThat(names, contains("John", "Adam", "Jane"));
}
7. Convert a List to an ImmutableList
Finally β letβs see how to create an immutable copy of a List β an ImmutableList β using the ImmutableList.copyOf() API:
@Test
public void whenCreateImmutableList_thenCreated() {
List<String> names = Lists.newArrayList("John", "Adam", "Jane");
names.add("Tom");
assertEquals(4, names.size());
ImmutableList<String> immutable = ImmutableList.copyOf(names);
assertThat(immutable, contains("John", "Adam", "Jane", "Tom"));
}
8. Conclusion
And here we are β a quick tutorial going over most of the useful things you can do with Lists using Guava.
To dig into Lists even further, check out the Predicates and Functions guide to lists as well as the in-depth guide to Joining and Splitting lists in Guava.
