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

site.sorghum.anno._common.util.JSqlParserUtil Maven / Gradle / Ivy

The newest version!
package site.sorghum.anno._common.util;

import cn.hutool.core.util.ReflectUtil;
import net.sf.jsqlparser.expression.Expression;
import net.sf.jsqlparser.expression.NullValue;

/**
 * @author songyinyin
 * @since 2023/7/9 13:16
 */
public class JSqlParserUtil {

  public static Object getExpressionValue(Expression expression) {
    if (expression instanceof NullValue) {
      return null;
    }
    return ReflectUtil.invoke(expression, "getValue");
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy