All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.beetl.sql.ext.EmptyExpressionFunction Maven / Gradle / Ivy

There is a newer version: 3.30.13-RELEASE
Show newest version
package org.beetl.sql.ext;

import org.beetl.core.Context;
import org.beetl.core.Function;
import org.beetl.core.misc.PrimitiveArrayUtil;

import java.util.Collection;
import java.util.Map;

/**
 * 判断全局变量是否为“空”,下列情况属于为空·的情况
 * 
    * *
  • 变量不存在
  • *
  • 变量存在,但为null
  • *
  • 变量存在,但是字符,其长途为0
  • *
  • 变量存在,但是空集合
  • *
  • 变量存在,但是空数组
  • *
* 参数可以一个到多个,如

* ${empty("list")} * @author joelli * */ public class EmptyExpressionFunction implements Function { @Override public Boolean call(Object[] paras, Context ctx) { if (paras.length == 0) { return true; } Object result = paras[0]; if (result == null) { return true; } if (result instanceof String) { return ((String) result).length() == 0; } else if (result instanceof Collection) { return ((Collection) result).size() == 0; } else if (result instanceof Map) { return ((Map) result).size() == 0; } else if (result.getClass().isArray()) { Class ct = result.getClass().getComponentType(); if (ct.isPrimitive()) { return PrimitiveArrayUtil.getSize(result) == 0; } else { return ((Object[]) result).length == 0; } } else { return false; } } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy