Class PrimitiveArrayList

java.lang.Object
java.util.AbstractCollection<Object>
java.util.AbstractList<Object>
org.assertj.core.presentation.PrimitiveArrayList
All Implemented Interfaces:
Iterable<Object>, Collection<Object>, List<Object>

final class PrimitiveArrayList extends AbstractList<Object>
Provides a read-only view of an array as a list.

This is different from ArrayList because the array may be an array of primitives. Arrays of non-primitives also work, but ArrayList would probably be a better choice for these arrays.