<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>30.1-jre</version>
</dependency>
import com.google.common.collect.ImmutableList;
public class GuavaCollectionsExample {
public static void main(String[] args) {
ImmutableList<String> list = ImmutableList.of("apple", "banana", "cherry");
System.out.println(list);
}
}