Javers Comparing Lists
问题 I'm attempting to convert a diff on two lists of Entities into a more human readable format by interpreting container changes (v1.6.0). If I have a List of Entities (listBefore): entity1 entity2 entity3 entity4 and I reorder the list (listAfter) entity1 entity4 entity2 entity3 The result of comparing these lists using Javers.compareCollections( listBefore, listAfter, Entity.class ) is: containerChanges:[(3).removed:'entity4', (1).added:'entity4'] From this I can deduce that: entity4 moved