How can refactor this with java stream?
List<SessionCreateParams.LineItem> elements = new ArrayList<>();
SessionCreateParams.LineItem lineItem;
for (Product product : experience.getProducts()) {
String taxRate = getTaxRate(product.getPriceId());
lineItem = stripeProxy.createLineItem(1L, product.getPriceId(), taxRate);
elements.add(lineItem);
}