![JAR search and dependency download from the Maven repository](/logo.png)
com.mergeplus.handler.ValidateHandler Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of merge-plus Show documentation
Show all versions of merge-plus Show documentation
merge-plus is a plus to merge dictionary value
The newest version!
package com.mergeplus.handler;
import java.util.Collection;
/**
* 项目名称:merge-plus
* 类 名 称:Handle
* 类 描 述:TODO
* 创建时间:2020/10/21 11:45 上午
* 创 建 人:chenyouhong
*/
public class ValidateHandler extends AbstractHandler {
/**
*
* @param obj 参数
*/
@Override
public void doHandler(Object obj) {
if (obj == null) {
return;
}
if (obj instanceof Collection) {
Collection items = (Collection)obj;
if (items.isEmpty()) {
return;
}
}
if (this.next != null) {
this.next.doHandler(obj);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy