I can\'t seem to find a Java List that\'s max length is long\'s max value.
Does such a List exist?
If so, where?
As List.get(int) accepts int as its argument, it is impossible to address entries with indexes greater than Integer.MAX_VALUE.
Do note, however, that Iterable> or Map can address much more data. As List implements Iterable it could contain any amount of data (that part being not exposed with int-based List's API).