I've this class:
private class Item {
private String transactionId;
private String user;
private LocalDate expiration;
private String confidential;
private String locked;
}
By other hand, I've five collections:
List<String> transactions;
List<String> users;
List<LocalDate> expirations;
List<String> confidential;
List<String> lockeds;
So I need to map each n of each collection to a new Item object.
Any ideas?