This is my list:
List<Card> cards;
my Java-8 stream where i want to create the Map
Map<String, Integer> cardsMap = cards.stream().collect(Collectors.groupingBy(Card::getCardValue, amount of cards that are grouped));
This obviously doesn't work but i am clueless of how i would do it otherwise.