mirror of
https://gitee.com/dromara/hutool.git
synced 2025-04-05 17:37:59 +08:00
add CastUtil
This commit is contained in:
parent
44f067c6a9
commit
541ab9ed55
@ -9,6 +9,7 @@
|
||||
* 【core 】 BooleanUtil增加toBooleanObject方法(issue#I56AG3@Gitee)
|
||||
* 【core 】 CharSequenceUtil增加startWithAnyIgnoreCase方法(issue#2312@Github)
|
||||
* 【system 】 JavaInfo增加版本(issue#2310@Github)
|
||||
* 【core 】 新增CastUtil(pr#2313@Github)
|
||||
*
|
||||
### 🐞Bug修复
|
||||
* 【core 】 MapUtil.map对null友好,且修复了测试用例中分组问题(pr#614@Gitee)
|
||||
|
@ -1058,7 +1058,7 @@ public class CollUtil {
|
||||
* @param <T> 集合元素类型
|
||||
* @param <K> 唯一键类型
|
||||
* @param collection 集合
|
||||
* @param override 是否覆盖模式,如果为{@code true},加入的新值会覆盖相同key的旧值,否则会忽略新加值
|
||||
* @param override 是否覆盖模式,如果为{@code true},加入的新值会覆盖相同key的旧值,否则会忽略新加值
|
||||
* @return {@link ArrayList}
|
||||
* @since 5.8.0
|
||||
*/
|
||||
@ -3056,94 +3056,4 @@ public class CollUtil {
|
||||
|
||||
return IterUtil.isEqualList(list1, list2);
|
||||
}
|
||||
|
||||
/**
|
||||
* 泛型集合向上转型。例如将Collection<Integer>转换为Collection<Number>
|
||||
* @param collection 集合
|
||||
* @param <T> 泛型
|
||||
* @return 泛化集合
|
||||
*/
|
||||
@SuppressWarnings("unchecked")
|
||||
public static <T> Collection<T> castup(Collection<? extends T> collection){
|
||||
return (Collection<T>) collection;
|
||||
}
|
||||
|
||||
/**
|
||||
* 泛型集合向下转型。例如将Collection<Number>转换为Collection<Integer>
|
||||
* @param collection
|
||||
* @param <T>
|
||||
* @return
|
||||
*/
|
||||
@SuppressWarnings("unchecked")
|
||||
public static <T> Collection<T> castdown(Collection<? super T> collection){
|
||||
return (Collection<T>) collection;
|
||||
}
|
||||
|
||||
/**
|
||||
* 泛型集合向上转型。例如将Set<Integer>转换为Set<Number>
|
||||
* @param set 集合
|
||||
* @param <T> 泛型
|
||||
* @return 泛化集合
|
||||
*/
|
||||
@SuppressWarnings("unchecked")
|
||||
public static <T> Set<T> castup(Set<? extends T> set){
|
||||
return (Set<T>) set;
|
||||
}
|
||||
|
||||
/**
|
||||
* 泛型集合向下转型。例如将Set<Number>转换为Set<Integer>
|
||||
* @param set 集合
|
||||
* @param <T> 泛型子类
|
||||
* @return 泛化集合
|
||||
*/
|
||||
@SuppressWarnings("unchecked")
|
||||
public static <T> Set<T> castdown(Set<? super T> set){
|
||||
return (Set<T>) set;
|
||||
}
|
||||
|
||||
/**
|
||||
* 泛型集合向下转型。例如将Map<Integer, Integer>转换为Map<Number,Number>
|
||||
* @param map 集合
|
||||
* @param <K> 泛型父类
|
||||
* @param <V> 泛型父类
|
||||
* @return 泛化集合
|
||||
*/
|
||||
@SuppressWarnings("unchecked")
|
||||
public static <K,V> Map<K,V> castup(Map<?extends K, ? extends V> map){
|
||||
return (Map<K,V>) map;
|
||||
}
|
||||
|
||||
/**
|
||||
* 泛型集合向下转型。例如将Map<Number,Number>转换为Map<Integer, Integer>
|
||||
* @param map 集合
|
||||
* @param <K> 泛型子类
|
||||
* @param <V> 泛型子类
|
||||
* @return 泛化集合
|
||||
*/
|
||||
@SuppressWarnings("unchecked")
|
||||
public static <K,V> Map<K,V> castdown(Map<?super K, ? super V> map){
|
||||
return (Map<K,V>) map;
|
||||
}
|
||||
|
||||
/**
|
||||
* 泛型接口向上转型。例如将List<Integer>转换为List<Number>
|
||||
* @param list 集合
|
||||
* @param <T> 泛型的父类
|
||||
* @return 泛化集合
|
||||
*/
|
||||
@SuppressWarnings("unchecked")
|
||||
public static <T> List<T> castup(List<? extends T> list){
|
||||
return (List<T>) list;
|
||||
}
|
||||
|
||||
/**
|
||||
* 泛型集合向下转型。例如将List<Number>转换为List<Integer>
|
||||
* @param list 集合
|
||||
* @param <T> 泛型的子类
|
||||
* @return 泛化集合
|
||||
*/
|
||||
@SuppressWarnings("unchecked")
|
||||
public static <T> List<T> castdown(List<? super T> list){
|
||||
return (List<T>) list;
|
||||
}
|
||||
}
|
||||
|
118
hutool-core/src/main/java/cn/hutool/core/convert/CastUtil.java
Normal file
118
hutool-core/src/main/java/cn/hutool/core/convert/CastUtil.java
Normal file
@ -0,0 +1,118 @@
|
||||
package cn.hutool.core.convert;
|
||||
|
||||
import java.util.Collection;
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
import java.util.Set;
|
||||
|
||||
/**
|
||||
* 转换工具类,提供集合、Map等向上向下转换工具
|
||||
*
|
||||
* @author looly
|
||||
* @since 5.8.1
|
||||
*/
|
||||
public class CastUtil {
|
||||
/**
|
||||
* 泛型集合向上转型。例如将Collection<Integer>转换为Collection<Number>
|
||||
*
|
||||
* @param collection 集合
|
||||
* @param <T> 元素类型
|
||||
* @return 转换后的集合
|
||||
* @since 5.8.1
|
||||
*/
|
||||
@SuppressWarnings("unchecked")
|
||||
public static <T> Collection<T> castUp(Collection<? extends T> collection) {
|
||||
return (Collection<T>) collection;
|
||||
}
|
||||
|
||||
/**
|
||||
* 泛型集合向下转型。例如将Collection<Number>转换为Collection<Integer>
|
||||
*
|
||||
* @param collection 集合
|
||||
* @param <T> 元素类型
|
||||
* @return 转换后的集合
|
||||
* @since 5.8.1
|
||||
*/
|
||||
@SuppressWarnings("unchecked")
|
||||
public static <T> Collection<T> castDown(Collection<? super T> collection) {
|
||||
return (Collection<T>) collection;
|
||||
}
|
||||
|
||||
/**
|
||||
* 泛型集合向上转型。例如将Set<Integer>转换为Set<Number>
|
||||
*
|
||||
* @param set 集合
|
||||
* @param <T> 泛型
|
||||
* @return 泛化集合
|
||||
* @since 5.8.1
|
||||
*/
|
||||
@SuppressWarnings("unchecked")
|
||||
public static <T> Set<T> castUp(Set<? extends T> set) {
|
||||
return (Set<T>) set;
|
||||
}
|
||||
|
||||
/**
|
||||
* 泛型集合向下转型。例如将Set<Number>转换为Set<Integer>
|
||||
*
|
||||
* @param set 集合
|
||||
* @param <T> 泛型子类
|
||||
* @return 泛化集合
|
||||
* @since 5.8.1
|
||||
*/
|
||||
@SuppressWarnings("unchecked")
|
||||
public static <T> Set<T> castDown(Set<? super T> set) {
|
||||
return (Set<T>) set;
|
||||
}
|
||||
|
||||
/**
|
||||
* 泛型接口向上转型。例如将List<Integer>转换为List<Number>
|
||||
*
|
||||
* @param list 集合
|
||||
* @param <T> 泛型的父类
|
||||
* @return 泛化集合
|
||||
*/
|
||||
@SuppressWarnings("unchecked")
|
||||
public static <T> List<T> castUp(List<? extends T> list) {
|
||||
return (List<T>) list;
|
||||
}
|
||||
|
||||
/**
|
||||
* 泛型集合向下转型。例如将List<Number>转换为List<Integer>
|
||||
*
|
||||
* @param list 集合
|
||||
* @param <T> 泛型的子类
|
||||
* @return 泛化集合
|
||||
*/
|
||||
@SuppressWarnings("unchecked")
|
||||
public static <T> List<T> castDown(List<? super T> list) {
|
||||
return (List<T>) list;
|
||||
}
|
||||
|
||||
/**
|
||||
* 泛型集合向下转型。例如将Map<Integer, Integer>转换为Map<Number,Number>
|
||||
*
|
||||
* @param map 集合
|
||||
* @param <K> 泛型父类
|
||||
* @param <V> 泛型父类
|
||||
* @return 泛化集合
|
||||
* @since 5.8.1
|
||||
*/
|
||||
@SuppressWarnings("unchecked")
|
||||
public static <K, V> Map<K, V> castUp(Map<? extends K, ? extends V> map) {
|
||||
return (Map<K, V>) map;
|
||||
}
|
||||
|
||||
/**
|
||||
* 泛型集合向下转型。例如将Map<Number,Number>转换为Map<Integer, Integer>
|
||||
*
|
||||
* @param map 集合
|
||||
* @param <K> 泛型子类
|
||||
* @param <V> 泛型子类
|
||||
* @return 泛化集合
|
||||
* @since 5.8.1
|
||||
*/
|
||||
@SuppressWarnings("unchecked")
|
||||
public static <K, V> Map<K, V> castDown(Map<? super K, ? super V> map) {
|
||||
return (Map<K, V>) map;
|
||||
}
|
||||
}
|
@ -10,7 +10,6 @@ import lombok.Data;
|
||||
import org.junit.Assert;
|
||||
import org.junit.Test;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.ArrayList;
|
||||
import java.util.Arrays;
|
||||
import java.util.Collection;
|
||||
@ -909,36 +908,6 @@ public class CollUtilTest {
|
||||
Assert.assertEquals("bb", distinct.get(1).getName());
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testCastToSuper() {
|
||||
Collection<Integer> collection=CollUtil.newLinkedList(1,2,3);
|
||||
List<Integer> list = CollUtil.newArrayList(1, 2, 3);
|
||||
Set<Integer> set = CollUtil.newHashSet(1, 2, 3);
|
||||
Map<Integer, Integer> map = new HashMap<>();
|
||||
map.put(1, 1);
|
||||
|
||||
Collection<Number> collection2 = CollUtil.castup(collection);
|
||||
Assert.assertSame(collection, collection2);
|
||||
|
||||
Collection<Integer> collection3 = CollUtil.castdown(collection2);
|
||||
Assert.assertSame(collection2, collection3);
|
||||
|
||||
List<Number> list2 = CollUtil.castup(list);
|
||||
Assert.assertSame(list, list2);
|
||||
List<Integer> list3 = CollUtil.castdown(list2);
|
||||
Assert.assertSame(list2, list3);
|
||||
|
||||
Set<Number> set2 = CollUtil.castup(set);
|
||||
Assert.assertSame(set, set2);
|
||||
Set<Integer> set3 = CollUtil.castdown(set2);
|
||||
Assert.assertSame(set2, set3);
|
||||
|
||||
Map<Number, Serializable> map2 = CollUtil.castup(map);
|
||||
Assert.assertSame(map, map2);
|
||||
Map<Integer, Number> map3 = CollUtil.castdown(map2);
|
||||
Assert.assertSame(map2, map3);
|
||||
}
|
||||
|
||||
@Data
|
||||
@AllArgsConstructor
|
||||
static class Person {
|
||||
|
@ -0,0 +1,45 @@
|
||||
package cn.hutool.core.convert;
|
||||
|
||||
import cn.hutool.core.collection.CollUtil;
|
||||
import org.junit.Assert;
|
||||
import org.junit.Test;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.Collection;
|
||||
import java.util.HashMap;
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
import java.util.Set;
|
||||
|
||||
public class CastUtilTest {
|
||||
|
||||
@Test
|
||||
public void testCastToSuper() {
|
||||
Collection<Integer> collection= CollUtil.newLinkedList(1,2,3);
|
||||
List<Integer> list = CollUtil.newArrayList(1, 2, 3);
|
||||
Set<Integer> set = CollUtil.newHashSet(1, 2, 3);
|
||||
Map<Integer, Integer> map = new HashMap<>();
|
||||
map.put(1, 1);
|
||||
|
||||
Collection<Number> collection2 = CastUtil.castUp(collection);
|
||||
Assert.assertSame(collection, collection2);
|
||||
|
||||
Collection<Integer> collection3 = CastUtil.castDown(collection2);
|
||||
Assert.assertSame(collection2, collection3);
|
||||
|
||||
List<Number> list2 = CastUtil.castUp(list);
|
||||
Assert.assertSame(list, list2);
|
||||
List<Integer> list3 = CastUtil.castDown(list2);
|
||||
Assert.assertSame(list2, list3);
|
||||
|
||||
Set<Number> set2 = CastUtil.castUp(set);
|
||||
Assert.assertSame(set, set2);
|
||||
Set<Integer> set3 = CastUtil.castDown(set2);
|
||||
Assert.assertSame(set2, set3);
|
||||
|
||||
Map<Number, Serializable> map2 = CastUtil.castUp(map);
|
||||
Assert.assertSame(map, map2);
|
||||
Map<Integer, Number> map3 = CastUtil.castDown(map2);
|
||||
Assert.assertSame(map2, map3);
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user