Liste der BigInteger, um Long aufzulisten
List<Long> longList = bigIntegerList.stream().map(BigInteger::longValue).collect(Collectors.toList());
Graceful Gecko
List<Long> longList = bigIntegerList.stream().map(BigInteger::longValue).collect(Collectors.toList());