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

com.xiongyingqi.common.logic.config.method.ConvertMethod Maven / Gradle / Ivy

The newest version!
package com.xiongyingqi.common.logic.config.method;


import com.xiongyingqi.common.logic.config.vo.Condition;

/**
 * @author xiongyingqi
 * @since 20171017//
 */
public interface ConvertMethod {
  /**
   * 对字段值执行转换方法
   *
   * @param fieldValue 字段的值
   * @param condition  执行该转换时所在的{@link Condition}配置
   * @return 方法执行结果
   * @throws ConvertException 转换出现异常时抛出异常
   */
  String execute(String fieldValue, Condition condition) throws ConvertException;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy