org.voovan.tools.TObject Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of voovan-common Show documentation
Show all versions of voovan-common Show documentation
Voovan is a java framwork and it not depends on any third-party framework.
package org.voovan.tools;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
/**
* 对象工具类
*
* @author helyho
*
* Voovan Framework.
* WebSite: https://github.com/helyho/Voovan
* Licence: Apache v2 License
*/
public class TObject {
/**
* 类型转换
* @param 范型
* @param obj 被转换对象
* @return 转换后的对象
*/
@SuppressWarnings("unchecked")
public static T cast(Object obj){
return (T)obj;
}
/**
* 转换成指定类型
* @param 范型
* @param obj 被转换对象
* @param t 指定的类型
* @return 转换后的对象
*/
@SuppressWarnings("unchecked")
public static T cast(Object obj,Class t){
return (T)obj;
}
/**
* 空值默认值
* @param 范型
* @param source 检测对象
* @param defValue null 值替换值
* @return 如果非 null 则返回 source,如果为 null 则返回 defValue。
*/
public static T nullDefault(T source,T defValue){
return source!=null?source:defValue;
}
/**
* 初始化一个 List
* @param objs List 列表的每一个元素
* @return 初始化完成的List对象
*/
@SuppressWarnings("rawtypes")
public static List asList(Object ...objs){
ArrayList