com.dahuatech.hutool.core.collection.CollUtil Maven / Gradle / Ivy
Show all versions of java-sdk-common Show documentation
package com.dahuatech.hutool.core.collection;
import com.dahuatech.hutool.core.bean.BeanUtil;
import com.dahuatech.hutool.core.comparator.PinyinComparator;
import com.dahuatech.hutool.core.comparator.PropertyComparator;
import com.dahuatech.hutool.core.convert.Convert;
import com.dahuatech.hutool.core.convert.ConverterRegistry;
import com.dahuatech.hutool.core.exceptions.UtilException;
import com.dahuatech.hutool.core.lang.Editor;
import com.dahuatech.hutool.core.lang.Filter;
import com.dahuatech.hutool.core.lang.Matcher;
import com.dahuatech.hutool.core.map.MapUtil;
import com.dahuatech.hutool.core.util.*;
import java.lang.reflect.Type;
import java.util.*;
import java.util.Map.Entry;
import java.util.concurrent.ArrayBlockingQueue;
import java.util.concurrent.BlockingQueue;
import java.util.concurrent.CopyOnWriteArrayList;
import java.util.concurrent.LinkedBlockingDeque;
/**
* 集合相关工具类
*
* 此工具方法针对{@link Collection}及其实现类封装的工具。
*
*
由于{@link Collection} 实现了{@link Iterable}接口,因此部分工具此类不提供,而是在{@link IterUtil} 中提供
*
* @author xiaoleilu
* @see IterUtil
* @since 3.1.1
*/
public class CollUtil {
/**
* 如果提供的集合为{@code null},返回一个不可变的默认空集合,否则返回原集合
* 空集合使用{@link Collections#emptySet()}
*
* @param 集合元素类型
* @param set 提供的集合,可能为null
* @return 原集合,若为null返回空集合
* @since 4.6.3
*/
public static Set emptyIfNull(Set set) {
return (null == set) ? Collections.emptySet() : set;
}
/**
* 如果提供的集合为{@code null},返回一个不可变的默认空集合,否则返回原集合
* 空集合使用{@link Collections#emptyList()}
*
* @param 集合元素类型
* @param set 提供的集合,可能为null
* @return 原集合,若为null返回空集合
* @since 4.6.3
*/
public static List emptyIfNull(List set) {
return (null == set) ? Collections.emptyList() : set;
}
/**
* 两个集合的并集
* 针对一个集合中存在多个相同元素的情况,计算两个集合中此元素的个数,保留最多的个数
* 例如:集合1:[a, b, c, c, c],集合2:[a, b, c, c]
* 结果:[a, b, c, c, c],此结果中只保留了三个c
*
* @param 集合元素类型
* @param coll1 集合1
* @param coll2 集合2
* @return 并集的集合,返回 {@link ArrayList}
*/
public static Collection union(Collection coll1, Collection coll2) {
final ArrayList list = new ArrayList<>();
if (isEmpty(coll1)) {
list.addAll(coll2);
} else if (isEmpty(coll2)) {
list.addAll(coll1);
} else {
final Map map1 = countMap(coll1);
final Map map2 = countMap(coll2);
final Set elts = newHashSet(coll2);
elts.addAll(coll1);
int m;
for (T t : elts) {
m = Math.max(Convert.toInt(map1.get(t), 0), Convert.toInt(map2.get(t), 0));
for (int i = 0; i < m; i++) {
list.add(t);
}
}
}
return list;
}
/**
* 多个集合的并集
* 针对一个集合中存在多个相同元素的情况,计算两个集合中此元素的个数,保留最多的个数
* 例如:集合1:[a, b, c, c, c],集合2:[a, b, c, c]
* 结果:[a, b, c, c, c],此结果中只保留了三个c
*
* @param 集合元素类型
* @param coll1 集合1
* @param coll2 集合2
* @param otherColls 其它集合
* @return 并集的集合,返回 {@link ArrayList}
*/
@SafeVarargs
public static Collection union(
Collection coll1, Collection coll2, Collection... otherColls) {
Collection union = union(coll1, coll2);
for (Collection coll : otherColls) {
union = union(union, coll);
}
return union;
}
/**
* 两个集合的交集
* 针对一个集合中存在多个相同元素的情况,计算两个集合中此元素的个数,保留最少的个数
* 例如:集合1:[a, b, c, c, c],集合2:[a, b, c, c]
* 结果:[a, b, c, c],此结果中只保留了两个c
*
* @param 集合元素类型
* @param coll1 集合1
* @param coll2 集合2
* @return 交集的集合,返回 {@link ArrayList}
*/
public static Collection intersection(Collection coll1, Collection coll2) {
final ArrayList list = new ArrayList<>();
if (isNotEmpty(coll1) && isNotEmpty(coll2)) {
final Map map1 = countMap(coll1);
final Map map2 = countMap(coll2);
final Set elts = newHashSet(coll2);
int m;
for (T t : elts) {
m = Math.min(Convert.toInt(map1.get(t), 0), Convert.toInt(map2.get(t), 0));
for (int i = 0; i < m; i++) {
list.add(t);
}
}
}
return list;
}
/**
* 多个集合的交集
* 针对一个集合中存在多个相同元素的情况,计算两个集合中此元素的个数,保留最少的个数
* 例如:集合1:[a, b, c, c, c],集合2:[a, b, c, c]
* 结果:[a, b, c, c],此结果中只保留了两个c
*
* @param 集合元素类型
* @param coll1 集合1
* @param coll2 集合2
* @param otherColls 其它集合
* @return 并集的集合,返回 {@link ArrayList}
*/
@SafeVarargs
public static Collection intersection(
Collection coll1, Collection coll2, Collection... otherColls) {
Collection intersection = intersection(coll1, coll2);
if (isEmpty(intersection)) {
return intersection;
}
for (Collection coll : otherColls) {
intersection = intersection(intersection, coll);
if (isEmpty(intersection)) {
return intersection;
}
}
return intersection;
}
/**
* 两个集合的差集
* 针对一个集合中存在多个相同元素的情况,计算两个集合中此元素的个数,保留两个集合中此元素个数差的个数
* 例如:集合1:[a, b, c, c, c],集合2:[a, b, c, c]
* 结果:[c],此结果中只保留了一个
* 任意一个集合为空,返回另一个集合
* 两个集合无交集则返回两个集合的组合
*
* @param 集合元素类型
* @param coll1 集合1
* @param coll2 集合2
* @return 差集的集合,返回 {@link ArrayList}
*/
public static Collection disjunction(Collection coll1, Collection coll2) {
if (isEmpty(coll1)) {
return coll2;
}
if (isEmpty(coll2)) {
return coll1;
}
final ArrayList result = new ArrayList<>();
final Map map1 = countMap(coll1);
final Map map2 = countMap(coll2);
final Set elts = newHashSet(coll2);
elts.addAll(coll1);
int m;
for (T t : elts) {
m = Math.abs(Convert.toInt(map1.get(t), 0) - Convert.toInt(map2.get(t), 0));
for (int i = 0; i < m; i++) {
result.add(t);
}
}
return result;
}
/**
* 判断指定集合是否包含指定值,如果集合为空(null或者空),返回{@code false},否则找到元素返回{@code true}
*
* @param collection 集合
* @param value 需要查找的值
* @return 如果集合为空(null或者空),返回{@code false},否则找到元素返回{@code true}
* @since 4.1.10
*/
public static boolean contains(Collection> collection, Object value) {
return isNotEmpty(collection) && collection.contains(value);
}
/**
* 其中一个集合在另一个集合中是否至少包含一个元素,即是两个集合是否至少有一个共同的元素
*
* @param coll1 集合1
* @param coll2 集合2
* @return 其中一个集合在另一个集合中是否至少包含一个元素
* @see #intersection
* @since 2.1
*/
public static boolean containsAny(Collection> coll1, Collection> coll2) {
if (isEmpty(coll1) || isEmpty(coll2)) {
return false;
}
if (coll1.size() < coll2.size()) {
for (Object object : coll1) {
if (coll2.contains(object)) {
return true;
}
}
} else {
for (Object object : coll2) {
if (coll1.contains(object)) {
return true;
}
}
}
return false;
}
/**
* 集合1中是否包含集合2中所有的元素,即集合2是否为集合1的子集
*
* @param coll1 集合1
* @param coll2 集合2
* @return 集合1中是否包含集合2中所有的元素
* @since 4.5.12
*/
public static boolean containsAll(Collection> coll1, Collection> coll2) {
if (isEmpty(coll1) || isEmpty(coll2) || coll1.size() < coll2.size()) {
return false;
}
for (Object object : coll2) {
if (false == coll1.contains(object)) {
return false;
}
}
return true;
}
/**
* 根据集合返回一个元素计数的 {@link Map}
* 所谓元素计数就是假如这个集合中某个元素出现了n次,那将这个元素做为key,n做为value
* 例如:[a,b,c,c,c] 得到:
* a: 1
* b: 1
* c: 3
*
* @param 集合元素类型
* @param collection 集合
* @return {@link Map}
* @see IterUtil#countMap(Iterable)
*/
public static Map countMap(Iterable collection) {
return IterUtil.countMap(collection);
}
/**
* 以 conjunction 为分隔符将集合转换为字符串
* 如果集合元素为数组、{@link Iterable}或{@link Iterator},则递归组合其为字符串
*
* @param 集合元素类型
* @param iterable {@link Iterable}
* @param conjunction 分隔符
* @return 连接后的字符串
* @see IterUtil#join(Iterable, CharSequence)
*/
public static String join(Iterable iterable, CharSequence conjunction) {
return IterUtil.join(iterable, conjunction);
}
/**
* 以 conjunction 为分隔符将集合转换为字符串
* 如果集合元素为数组、{@link Iterable}或{@link Iterator},则递归组合其为字符串
*
* @param 集合元素类型
* @param iterator 集合
* @param conjunction 分隔符
* @return 连接后的字符串
* @see IterUtil#join(Iterator, CharSequence)
*/
public static String join(Iterator iterator, CharSequence conjunction) {
return IterUtil.join(iterator, conjunction);
}
/**
* 切取部分数据
* 切取后的栈将减少这些元素
*
* @param 集合元素类型
* @param surplusAlaDatas 原数据
* @param partSize 每部分数据的长度
* @return 切取出的数据或null
*/
public static List popPart(Stack surplusAlaDatas, int partSize) {
if (isEmpty(surplusAlaDatas)) {
return null;
}
final List currentAlaDatas = new ArrayList<>();
int size = surplusAlaDatas.size();
// 切割
if (size > partSize) {
for (int i = 0; i < partSize; i++) {
currentAlaDatas.add(surplusAlaDatas.pop());
}
} else {
for (int i = 0; i < size; i++) {
currentAlaDatas.add(surplusAlaDatas.pop());
}
}
return currentAlaDatas;
}
/**
* 切取部分数据
* 切取后的栈将减少这些元素
*
* @param 集合元素类型
* @param surplusAlaDatas 原数据
* @param partSize 每部分数据的长度
* @return 切取出的数据或null
*/
public static List popPart(Deque surplusAlaDatas, int partSize) {
if (isEmpty(surplusAlaDatas)) {
return null;
}
final List currentAlaDatas = new ArrayList<>();
int size = surplusAlaDatas.size();
// 切割
if (size > partSize) {
for (int i = 0; i < partSize; i++) {
currentAlaDatas.add(surplusAlaDatas.pop());
}
} else {
for (int i = 0; i < size; i++) {
currentAlaDatas.add(surplusAlaDatas.pop());
}
}
return currentAlaDatas;
}
// -----------------------------------------------------------------------------------------------
// new HashMap
/**
* 新建一个HashMap
*
* @param Key类型
* @param Value类型
* @return HashMap对象
* @see MapUtil#newHashMap()
*/
public static HashMap newHashMap() {
return MapUtil.newHashMap();
}
/**
* 新建一个HashMap
*
* @param Key类型
* @param Value类型
* @param size 初始大小,由于默认负载因子0.75,传入的size会实际初始大小为size / 0.75
* @param isOrder Map的Key是否有序,有序返回 {@link LinkedHashMap},否则返回 {@link HashMap}
* @return HashMap对象
* @see MapUtil#newHashMap(int, boolean)
* @since 3.0.4
*/
public static HashMap newHashMap(int size, boolean isOrder) {
return MapUtil.newHashMap(size, isOrder);
}
/**
* 新建一个HashMap
*
* @param Key类型
* @param Value类型
* @param size 初始大小,由于默认负载因子0.75,传入的size会实际初始大小为size / 0.75
* @return HashMap对象
* @see MapUtil#newHashMap(int)
*/
public static HashMap newHashMap(int size) {
return MapUtil.newHashMap(size);
}
// -----------------------------------------------------------------------------------------------
// new HashSet
/**
* 新建一个HashSet
*
* @param 集合元素类型
* @param ts 元素数组
* @return HashSet对象
*/
@SafeVarargs
public static HashSet newHashSet(T... ts) {
return newHashSet(false, ts);
}
/**
* 新建一个LinkedHashSet
*
* @param 集合元素类型
* @param ts 元素数组
* @return HashSet对象
* @since 4.1.10
*/
@SafeVarargs
public static LinkedHashSet newLinkedHashSet(T... ts) {
return (LinkedHashSet) newHashSet(true, ts);
}
/**
* 新建一个HashSet
*
* @param 集合元素类型
* @param isSorted 是否有序,有序返回 {@link LinkedHashSet},否则返回 {@link HashSet}
* @param ts 元素数组
* @return HashSet对象
*/
@SafeVarargs
public static HashSet newHashSet(boolean isSorted, T... ts) {
if (null == ts) {
return isSorted ? new LinkedHashSet() : new HashSet();
}
int initialCapacity = Math.max((int) (ts.length / .75f) + 1, 16);
final HashSet set =
isSorted ? new LinkedHashSet(initialCapacity) : new HashSet(initialCapacity);
Collections.addAll(set, ts);
return set;
}
/**
* 新建一个HashSet
*
* @param 集合元素类型
* @param collection 集合
* @return HashSet对象
*/
public static HashSet newHashSet(Collection collection) {
return newHashSet(false, collection);
}
/**
* 新建一个HashSet
*
* @param 集合元素类型
* @param isSorted 是否有序,有序返回 {@link LinkedHashSet},否则返回{@link HashSet}
* @param collection 集合,用于初始化Set
* @return HashSet对象
*/
public static HashSet newHashSet(boolean isSorted, Collection collection) {
return isSorted ? new LinkedHashSet<>(collection) : new HashSet<>(collection);
}
/**
* 新建一个HashSet
*
* @param 集合元素类型
* @param isSorted 是否有序,有序返回 {@link LinkedHashSet},否则返回{@link HashSet}
* @param iter {@link Iterator}
* @return HashSet对象
* @since 3.0.8
*/
public static HashSet newHashSet(boolean isSorted, Iterator iter) {
if (null == iter) {
return newHashSet(isSorted, (T[]) null);
}
final HashSet set = isSorted ? new LinkedHashSet() : new HashSet();
while (iter.hasNext()) {
set.add(iter.next());
}
return set;
}
/**
* 新建一个HashSet
*
* @param 集合元素类型
* @param isSorted 是否有序,有序返回 {@link LinkedHashSet},否则返回{@link HashSet}
* @param enumeration {@link Enumeration}
* @return HashSet对象
* @since 3.0.8
*/
public static HashSet newHashSet(boolean isSorted, Enumeration enumeration) {
if (null == enumeration) {
return newHashSet(isSorted, (T[]) null);
}
final HashSet set = isSorted ? new LinkedHashSet() : new HashSet();
while (enumeration.hasMoreElements()) {
set.add(enumeration.nextElement());
}
return set;
}
// -----------------------------------------------------------------------------------------------
// List
/**
* 新建一个空List
*
* @param 集合元素类型
* @param isLinked 是否新建LinkedList
* @return List对象
* @since 4.1.2
*/
public static List list(boolean isLinked) {
return isLinked ? new LinkedList() : new ArrayList();
}
/**
* 新建一个List
*
* @param 集合元素类型
* @param isLinked 是否新建LinkedList
* @param values 数组
* @return List对象
* @since 4.1.2
*/
@SafeVarargs
public static List list(boolean isLinked, T... values) {
if (ArrayUtil.isEmpty(values)) {
return list(isLinked);
}
final List arrayList = isLinked ? new LinkedList() : new ArrayList(values.length);
Collections.addAll(arrayList, values);
return arrayList;
}
/**
* 新建一个List
*
* @param 集合元素类型
* @param isLinked 是否新建LinkedList
* @param collection 集合
* @return List对象
* @since 4.1.2
*/
public static List list(boolean isLinked, Collection collection) {
if (null == collection) {
return list(isLinked);
}
return isLinked ? new LinkedList<>(collection) : new ArrayList<>(collection);
}
/**
* 新建一个List
* 提供的参数为null时返回空{@link ArrayList}
*
* @param 集合元素类型
* @param isLinked 是否新建LinkedList
* @param iterable {@link Iterable}
* @return List对象
* @since 4.1.2
*/
public static List list(boolean isLinked, Iterable iterable) {
if (null == iterable) {
return list(isLinked);
}
return list(isLinked, iterable.iterator());
}
/**
* 新建一个ArrayList
* 提供的参数为null时返回空{@link ArrayList}
*
* @param 集合元素类型
* @param isLinked 是否新建LinkedList
* @param iter {@link Iterator}
* @return ArrayList对象
* @since 4.1.2
*/
public static List list(boolean isLinked, Iterator iter) {
final List list = list(isLinked);
if (null != iter) {
while (iter.hasNext()) {
list.add(iter.next());
}
}
return list;
}
/**
* 新建一个List
* 提供的参数为null时返回空{@link ArrayList}
*
* @param 集合元素类型
* @param isLinked 是否新建LinkedList
* @param enumration {@link Enumeration}
* @return ArrayList对象
* @since 3.0.8
*/
public static List list(boolean isLinked, Enumeration enumration) {
final List list = list(isLinked);
if (null != enumration) {
while (enumration.hasMoreElements()) {
list.add(enumration.nextElement());
}
}
return list;
}
/**
* 新建一个ArrayList
*
* @param 集合元素类型
* @param values 数组
* @return ArrayList对象
*/
@SafeVarargs
public static ArrayList newArrayList(T... values) {
return (ArrayList) list(false, values);
}
/**
* 数组转为ArrayList
*
* @param 集合元素类型
* @param values 数组
* @return ArrayList对象
* @since 4.0.11
*/
@SafeVarargs
public static ArrayList toList(T... values) {
return newArrayList(values);
}
/**
* 新建一个ArrayList
*
* @param 集合元素类型
* @param collection 集合
* @return ArrayList对象
*/
public static ArrayList newArrayList(Collection collection) {
return (ArrayList) list(false, collection);
}
/**
* 新建一个ArrayList
* 提供的参数为null时返回空{@link ArrayList}
*
* @param 集合元素类型
* @param iterable {@link Iterable}
* @return ArrayList对象
* @since 3.1.0
*/
public static ArrayList newArrayList(Iterable iterable) {
return (ArrayList) list(false, iterable);
}
/**
* 新建一个ArrayList
* 提供的参数为null时返回空{@link ArrayList}
*
* @param 集合元素类型
* @param iter {@link Iterator}
* @return ArrayList对象
* @since 3.0.8
*/
public static ArrayList newArrayList(Iterator iter) {
return (ArrayList) list(false, iter);
}
/**
* 新建一个ArrayList
* 提供的参数为null时返回空{@link ArrayList}
*
* @param 集合元素类型
* @param enumration {@link Enumeration}
* @return ArrayList对象
* @since 3.0.8
*/
public static ArrayList newArrayList(Enumeration enumration) {
return (ArrayList) list(false, enumration);
}
// ----------------------------------------------------------------------new LinkedList
/**
* 新建LinkedList
*
* @param values 数组
* @param 类型
* @return LinkedList
* @since 4.1.2
*/
@SafeVarargs
public static LinkedList newLinkedList(T... values) {
return (LinkedList) list(true, values);
}
/**
* 新建一个CopyOnWriteArrayList
*
* @param 集合元素类型
* @param collection 集合
* @return {@link CopyOnWriteArrayList}
*/
public static CopyOnWriteArrayList newCopyOnWriteArrayList(Collection collection) {
return (null == collection)
? (new CopyOnWriteArrayList())
: (new CopyOnWriteArrayList(collection));
}
/**
* 新建{@link BlockingQueue}
* 在队列为空时,获取元素的线程会等待队列变为非空。当队列满时,存储元素的线程会等待队列可用。
*
* @param 集合类型
* @param capacity 容量
* @param isLinked 是否为链表形式
* @return {@link BlockingQueue}
* @since 3.3.0
*/
public static BlockingQueue newBlockingQueue(int capacity, boolean isLinked) {
BlockingQueue queue;
if (isLinked) {
queue = new LinkedBlockingDeque<>(capacity);
} else {
queue = new ArrayBlockingQueue<>(capacity);
}
return queue;
}
/**
* 创建新的集合对象
*
* @param 集合类型
* @param collectionType 集合类型
* @return 集合类型对应的实例
* @since 3.0.8
*/
@SuppressWarnings({"unchecked", "rawtypes"})
public static Collection create(Class> collectionType) {
Collection list;
if (collectionType.isAssignableFrom(AbstractCollection.class)) {
// 抽象集合默认使用ArrayList
list = new ArrayList<>();
}
// Set
else if (collectionType.isAssignableFrom(HashSet.class)) {
list = new HashSet<>();
} else if (collectionType.isAssignableFrom(LinkedHashSet.class)) {
list = new LinkedHashSet<>();
} else if (collectionType.isAssignableFrom(TreeSet.class)) {
list = new TreeSet<>();
} else if (collectionType.isAssignableFrom(EnumSet.class)) {
list =
(Collection) EnumSet.noneOf((Class) ClassUtil.getTypeArgument(collectionType));
}
// List
else if (collectionType.isAssignableFrom(ArrayList.class)) {
list = new ArrayList<>();
} else if (collectionType.isAssignableFrom(LinkedList.class)) {
list = new LinkedList<>();
}
// Others,直接实例化
else {
try {
list = (Collection) ReflectUtil.newInstance(collectionType);
} catch (Exception e) {
throw new UtilException(e);
}
}
return list;
}
/**
* 创建Map
* 传入抽象Map{@link AbstractMap}和{@link Map}类将默认创建{@link HashMap}
*
* @param map键类型
* @param map值类型
* @param mapType map类型
* @return {@link Map}实例
* @see MapUtil#createMap(Class)
*/
public static Map createMap(Class> mapType) {
return MapUtil.createMap(mapType);
}
/**
* 去重集合
*
* @param 集合元素类型
* @param collection 集合
* @return {@link ArrayList}
*/
public static ArrayList distinct(Collection collection) {
if (isEmpty(collection)) {
return new ArrayList<>();
} else if (collection instanceof Set) {
return new ArrayList<>(collection);
} else {
return new ArrayList<>(new LinkedHashSet<>(collection));
}
}
/**
* 截取集合的部分
*
* @param 集合元素类型
* @param list 被截取的数组
* @param start 开始位置(包含)
* @param end 结束位置(不包含)
* @return 截取后的数组,当开始位置超过最大时,返回空的List
*/
public static List sub(List list, int start, int end) {
return sub(list, start, end, 1);
}
/**
* 截取集合的部分
*
* @param 集合元素类型
* @param list 被截取的数组
* @param start 开始位置(包含)
* @param end 结束位置(不包含)
* @param step 步进
* @return 截取后的数组,当开始位置超过最大时,返回空的List
* @since 4.0.6
*/
public static List sub(List list, int start, int end, int step) {
if (list == null) {
return null;
}
if (list.isEmpty()) {
return new ArrayList<>(0);
}
final int size = list.size();
if (start < 0) {
start += size;
}
if (end < 0) {
end += size;
}
if (start == size) {
return new ArrayList<>(0);
}
if (start > end) {
int tmp = start;
start = end;
end = tmp;
}
if (end > size) {
if (start >= size) {
return new ArrayList<>(0);
}
end = size;
}
if (step <= 1) {
return list.subList(start, end);
}
final List result = new ArrayList<>();
for (int i = start; i < end; i += step) {
result.add(list.get(i));
}
return result;
}
/**
* 截取集合的部分
*
* @param 集合元素类型
* @param collection 被截取的数组
* @param start 开始位置(包含)
* @param end 结束位置(不包含)
* @return 截取后的数组,当开始位置超过最大时,返回null
*/
public static List sub(Collection collection, int start, int end) {
return sub(collection, start, end, 1);
}
/**
* 截取集合的部分
*
* @param 集合元素类型
* @param list 被截取的数组
* @param start 开始位置(包含)
* @param end 结束位置(不包含)
* @param step 步进
* @return 截取后的数组,当开始位置超过最大时,返回空集合
* @since 4.0.6
*/
public static List sub(Collection list, int start, int end, int step) {
if (list == null || list.isEmpty()) {
return null;
}
return sub(new ArrayList<>(list), start, end, step);
}
/**
* 对集合按照指定长度分段,每一个段为单独的集合,返回这个集合的列表
*
* @param 集合元素类型
* @param collection 集合
* @param size 每个段的长度
* @return 分段列表
*/
public static List> split(Collection collection, int size) {
final List> result = new ArrayList<>();
ArrayList subList = new ArrayList<>(size);
for (T t : collection) {
if (subList.size() >= size) {
result.add(subList);
subList = new ArrayList<>(size);
}
subList.add(t);
}
result.add(subList);
return result;
}
/**
* 过滤,此方法产生一个新集合
* 过滤过程通过传入的Editor实现来返回需要的元素内容,这个Editor实现可以实现以下功能:
*
*
* 1、过滤出需要的对象,如果返回null表示这个元素对象抛弃
* 2、修改元素对象,返回集合中为修改后的对象
*
*
* @param 集合元素类型
* @param collection 集合
* @param editor 编辑器接口
* @return 过滤后的集合
*/
public static Collection filter(Collection collection, Editor editor) {
if (null == collection || null == editor) {
return collection;
}
Collection collection2 = ObjectUtil.clone(collection);
try {
collection2.clear();
} catch (UnsupportedOperationException e) {
// 克隆后的对象不支持清空,说明为不可变集合对象,使用默认的ArrayList保存结果
collection2 = new ArrayList<>();
}
T modified;
for (T t : collection) {
modified = editor.edit(t);
if (null != modified) {
collection2.add(modified);
}
}
return collection2;
}
/**
* 过滤
* 过滤过程通过传入的Editor实现来返回需要的元素内容,这个Editor实现可以实现以下功能:
*
*
* 1、过滤出需要的对象,如果返回null表示这个元素对象抛弃
* 2、修改元素对象,返回集合中为修改后的对象
*
*
* @param 集合元素类型
* @param list 集合
* @param editor 编辑器接口
* @return 过滤后的数组
* @since 4.1.8
*/
public static List filter(List list, Editor editor) {
if (null == list || null == editor) {
return list;
}
final List list2 =
(list instanceof LinkedList) ? new LinkedList() : new ArrayList(list.size());
T modified;
for (T t : list) {
modified = editor.edit(t);
if (null != modified) {
list2.add(modified);
}
}
return list2;
}
/**
* 过滤
* 过滤过程通过传入的Filter实现来过滤返回需要的元素内容,这个Filter实现可以实现以下功能:
*
*
* 1、过滤出需要的对象,{@link Filter#accept(Object)}方法返回true的对象将被加入结果集合中
*
*
* @param 集合元素类型
* @param collection 集合
* @param filter 过滤器
* @return 过滤后的数组
* @since 3.1.0
*/
public static Collection filterNew(Collection collection, Filter filter) {
if (null == collection || null == filter) {
return collection;
}
Collection collection2 = ObjectUtil.clone(collection);
try {
collection2.clear();
} catch (UnsupportedOperationException e) {
// 克隆后的对象不支持清空,说明为不可变集合对象,使用默认的ArrayList保存结果
collection2 = new ArrayList<>();
}
for (T t : collection) {
if (filter.accept(t)) {
collection2.add(t);
}
}
return collection2;
}
/**
* 过滤