Skip to content
Advertisement

UNable to implementGroupby tradeDate then max of transactionDate if transaction Date are equal then get the max of version

I have the scenario need your help to solve this issue with java code .

We are getting List Of Trade Object Trade consists of 3 attributes :

JavaScript

So what I need to do with the above data is:

  1. if the trade date is unique then get the trade date. Output will be [1,2]
  2. if the trade date is duplicate then take the latest TransactionDate Output will be [4] from 3,4 rows
  3. If the trade date and TransactionDate is duplicate then take the max version Output will be [7] from 5,6,7

How will do solve this scenario ? Kindly help to implement

JavaScript

Advertisement

Answer

In your question there are 3 fields fields involved so the result is a Map<LocalDate, Map<LocalDate, Trades>>.

It is grouped by TradeDate, TransactionDate and aggregated by Version.

This function gives the desired result:

JavaScript

A complete test class:

JavaScript
User contributions licensed under: CC BY-SA
9 People found this is helpful
Advertisement