Uses of Class
cn.yusiwen.commons.mapper.CollectionUtil.CompareResult
Packages that use CollectionUtil.CompareResult
-
Uses of CollectionUtil.CompareResult in cn.yusiwen.commons.mapper
Methods in cn.yusiwen.commons.mapper that return CollectionUtil.CompareResultModifier and TypeMethodDescriptionstatic <T extends Comparable<T>>
CollectionUtil.CompareResult<T> CollectionUtil.compare(Collection<T> newCollection, Collection<T> oldCollection) 根据 元素自带的比较器 比较两个collection中哪些是新增的对象以及删除的对象和没有改变的对象static <T> CollectionUtil.CompareResult<T> CollectionUtil.compare(Collection<T> newCollection, Collection<T> oldCollection, Comparator<T> comparator) 根据 指定比较器 比较两个collection中哪些是新增的对象以及删除的对象和没有改变的对象static <T> CollectionUtil.CompareResult<T> CollectionUtil.compare(List<T> newList, List<T> oldList, Comparator<T> comparator) 根据 指定比较器 比较两个collection中哪些是新增的对象以及删除的对象和没有改变的对象