Is it possible to do the following?
List<Object o, Object p> listWithTwoObjects;
I want to retrieve data from a database and save it into this list, concretely in this way
Query query = "retrieve all posts and username, which this user posted";
List<Object o, Object p> userAndPost = query.getResultList();
o
is the username, and p
is the post. I can then render this to my template and show each post with its user.
My question is about the List with two Objects inside. Is it possible and if yes, how and where is the documentation for this?